/Volumes/compiler/apple/llvm-project/llvm/include/llvm/ADT/Optional.h
Line | Count | Source (jump to first uncovered line) |
1 | | //===- Optional.h - Simple variant for passing optional values --*- C++ -*-===// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | /// |
9 | | /// \file |
10 | | /// This file provides Optional, a template class modeled in the spirit of |
11 | | /// OCaml's 'opt' variant. The idea is to strongly type whether or not |
12 | | /// a value can be optional. |
13 | | /// |
14 | | //===----------------------------------------------------------------------===// |
15 | | |
16 | | #ifndef LLVM_ADT_OPTIONAL_H |
17 | | #define LLVM_ADT_OPTIONAL_H |
18 | | |
19 | | #include "llvm/ADT/Hashing.h" |
20 | | #include "llvm/ADT/None.h" |
21 | | #include "llvm/ADT/STLForwardCompat.h" |
22 | | #include "llvm/Support/Compiler.h" |
23 | | #include "llvm/Support/type_traits.h" |
24 | | #include <cassert> |
25 | | #include <new> |
26 | | #include <utility> |
27 | | |
28 | | namespace llvm { |
29 | | |
30 | | class raw_ostream; |
31 | | |
32 | | namespace optional_detail { |
33 | | |
34 | | /// Storage for any type. |
35 | | // |
36 | | // The specialization condition intentionally uses |
37 | | // llvm::is_trivially_{copy/move}_constructible instead of |
38 | | // std::is_trivially_{copy/move}_constructible. GCC versions prior to 7.4 may |
39 | | // instantiate the copy/move constructor of `T` when |
40 | | // std::is_trivially_{copy/move}_constructible is instantiated. This causes |
41 | | // compilation to fail if we query the trivially copy/move constructible |
42 | | // property of a class which is not copy/move constructible. |
43 | | // |
44 | | // The current implementation of OptionalStorage insists that in order to use |
45 | | // the trivial specialization, the value_type must be trivially copy |
46 | | // constructible and trivially copy assignable due to =default implementations |
47 | | // of the copy/move constructor/assignment. It does not follow that this is |
48 | | // necessarily the case std::is_trivially_copyable is true (hence the expanded |
49 | | // specialization condition). |
50 | | // |
51 | | // The move constructible / assignable conditions emulate the remaining behavior |
52 | | // of std::is_trivially_copyable. |
53 | | template <typename T, |
54 | | bool = (llvm::is_trivially_copy_constructible<T>::value && |
55 | | std::is_trivially_copy_assignable<T>::value && |
56 | | (llvm::is_trivially_move_constructible<T>::value || |
57 | | !std::is_move_constructible<T>::value) && |
58 | | (std::is_trivially_move_assignable<T>::value || |
59 | | !std::is_move_assignable<T>::value))> |
60 | | class OptionalStorage { |
61 | | union { |
62 | | char empty; |
63 | | T val; |
64 | | }; |
65 | | bool hasVal = false; |
66 | | |
67 | | public: |
68 | 382k | ~OptionalStorage() { reset(); }_ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EED2Ev Line | Count | Source | 68 | 5.07k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EED2Ev Line | Count | Source | 68 | 4 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10DiagnosticELb0EED2Ev Line | Count | Source | 68 | 41 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EED2Ev Line | Count | Source | 68 | 105 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EED2Ev Line | Count | Source | 68 | 6.28k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EED2Ev Line | Count | Source | 68 | 19 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies18SourceFileDepGraphELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EED2Ev Line | Count | Source | 68 | 47.9k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EED2Ev Line | Count | Source | 68 | 178 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift37BufferIndirectlyCausingDiagnosticRAIIELb0EED2Ev Line | Count | Source | 68 | 5 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EED2Ev Line | Count | Source | 68 | 16 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28PrettyStackTraceFileContentsELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ModuleDependencyIDELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5clang26dependency_directives_scan9DirectiveELj20EEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies25DependencyScanningServiceELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__13setIaNS2_4lessIaEENS2_9allocatorIaEEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift12dependencies14BatchScanInputENS2_9allocatorIS6_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3orc23JITTargetMachineBuilderELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignatureELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignature16DirectResultTypeELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__13setINS_9StringRefENS2_4lessIS4_EENS2_9allocatorIS4_EEEELb0EED2Ev Line | Count | Source | 68 | 13 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24FrontendInputsAndOutputsELb0EED2Ev Line | Count | Source | 68 | 13 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19OutputFilesComputerELb0EED2Ev Line | Count | Source | 68 | 11 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift24SupplementaryOutputPathsENS2_9allocatorIS5_EEEELb0EED2Ev Line | Count | Source | 68 | 22 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24SupplementaryOutputPathsELb0EED2Ev Line | Count | Source | 68 | 11 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS3_11ActionCacheENS3_9ObjectRefERNS2_16DiagnosticEngineERKNS2_24FrontendInputsAndOutputsERNS2_27CachingDiagnosticsProcessorEbE11OutputEntryLb0EED2Ev DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EED2Ev Line | Count | Source | 68 | 194 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EED2Ev Line | Count | Source | 68 | 19 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrINS_12MemoryBufferENS2_14default_deleteIS4_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15AccessNotesFileELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift16DiagnosticEngineELb0EED2Ev Line | Count | Source | 68 | 1 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen22NativeConventionSchemaELb0EED2Ev Line | Count | Source | 68 | 5 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen19ConstantInitBuilderELb0EED2Ev Line | Count | Source | 68 | 153 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen18AsyncContextLayoutELb0EED2Ev Line | Count | Source | 68 | 8 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEELb0EED2Ev Line | Count | Source | 68 | 16 | ~OptionalStorage() { reset(); } |
GenMeta.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_129GenericSignatureHeaderBuilderELb0EED2Ev Line | Count | Source | 68 | 19 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14FulfillmentMapELb0EED2Ev Line | Count | Source | 68 | 8 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen16YAMLTypeInfoNodeELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EED2Ev Line | Count | Source | 68 | 6 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_3vfs10OutputFileELb0EED2Ev Line | Count | Source | 68 | 2 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EED2Ev Line | Count | Source | 68 | 109 | ~OptionalStorage() { reset(); } |
IRGen.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SymbolSourcesToEmitELb0EED2Ev Line | Count | Source | 68 | 2 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ClusteredBitVectorELb0EED2Ev Line | Count | Source | 68 | 7 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EED2Ev Line | Count | Source | 68 | 998 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EED2Ev Line | Count | Source | 68 | 15 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EED2Ev Line | Count | Source | 68 | 1.43k | ~OptionalStorage() { reset(); } |
IRGenSIL.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112LoweredValueELb0EED2Ev Line | Count | Source | 68 | 96 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift14CanTypeWrapperINS4_15ExistentialTypeEEEjEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINS_10DataLayoutELb0EED2Ev Line | Count | Source | 68 | 4 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14YAMLModuleNodeELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S6_EEEELb0EED2Ev Line | Count | Source | 68 | 1 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18DiverseValueBufferINS2_8Lowering7CleanupEEELb0EED2Ev Line | Count | Source | 68 | 301 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8Lowering12ManagedValueES6_EELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering24ConvertingInitializationELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13ArgumentScopeELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS2_14default_deleteIS6_EEEELb0EED2Ev SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EED2Ev Line | Count | Source | 68 | 158 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EED2Ev Line | Count | Source | 68 | 308 | ~OptionalStorage() { reset(); } |
SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16CalleeELb0EED2Ev Line | Count | Source | 68 | 69 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift4ExprELj2EEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering21FormalEvaluationScopeELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6RValueELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering27InitializeDistActorIdentityELb0EED2Ev Line | Count | Source | 68 | 113 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14SILGenFunction15OpaqueValueRAIIELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EED2Ev Line | Count | Source | 68 | 1 | ~OptionalStorage() { reset(); } |
SILGenPoly.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113ResultPlannerELb0EED2Ev Line | Count | Source | 68 | 25 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering22FunctionInputGeneratorELb0EED2Ev Line | Count | Source | 68 | 65 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EED2Ev Line | Count | Source | 68 | 533 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EED2Ev Line | Count | Source | 68 | 397 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EED2Ev Line | Count | Source | 68 | 5.80k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EED2Ev Line | Count | Source | 68 | 4.35k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EED2Ev Line | Count | Source | 68 | 8 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS5_Lj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S7_EEEELb0EED2Ev Line | Count | Source | 68 | 38 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS3_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S9_EEEELb0EED2Ev Line | Count | Source | 68 | 38 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EED2Ev Line | Count | Source | 68 | 164 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EED2Ev Line | Count | Source | 68 | 11 | ~OptionalStorage() { reset(); } |
DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EED2Ev Line | Count | Source | 68 | 149 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117ConflictingAccessELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_14AutoDiffConfigEEELb0EED2Ev Line | Count | Source | 68 | 9 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_8SILValueEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EED2Ev Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119AvailableValueStoreELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEELb0EED2Ev Line | Count | Source | 68 | 148 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EED2Ev PredictableMemOpt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EED2Ev Line | Count | Source | 68 | 46 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift7SILTypeEjEELb0EED2Ev Line | Count | Source | 68 | 63 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EED2Ev Line | Count | Source | 68 | 2.02k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EED2Ev Line | Count | Source | 68 | 29.2k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EED2Ev Line | Count | Source | 68 | 51 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16InstModCallbacksELb0EED2Ev Line | Count | Source | 68 | 5.18k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ValueLifetimeAnalysisELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EED2Ev Line | Count | Source | 68 | 12.1k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15SILPrintContextELb0EED2Ev Line | Count | Source | 68 | 1.13k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EED2Ev Line | Count | Source | 68 | 943 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EED2Ev Line | Count | Source | 68 | 123 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS7_vEENS_6detail12DenseMapPairIS7_jEEEELb0EED2Ev Line | Count | Source | 68 | 1.32k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13BasicBlockSetELb0EED2Ev Line | Count | Source | 68 | 998 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEELb0EED2Ev Line | Count | Source | 68 | 1.98k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11SILFunctionENS4_15SubstitutionMapEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockES6_EELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EED2Ev Line | Count | Source | 68 | 2.18k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ReferenceMetaDataELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift6driver3Job9ConditionEbEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EED2Ev Line | Count | Source | 68 | 34 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfoELb0EED2Ev Line | Count | Source | 68 | 17 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EED2Ev Line | Count | Source | 68 | 1 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift13serialization26PrettyStackTraceModuleFileELb0EED2Ev Line | Count | Source | 68 | 69 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_18BitstreamBlockInfoELb0EED2Ev Line | Count | Source | 68 | 146 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyInfoELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeEjEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift24SerializedModuleBaseNameELb0EED2Ev Line | Count | Source | 68 | 198 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13TypeConverter18GenericContextRAIIELb0EED2Ev Line | Count | Source | 68 | 287 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EED2Ev Line | Count | Source | 68 | 71 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_5RegexELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EED2Ev Line | Count | Source | 68 | 283 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_jEEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EED2Ev Line | Count | Source | 68 | 340 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EED2Ev Line | Count | Source | 68 | 10.9k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EED2Ev Line | Count | Source | 68 | 4 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_8CaseStmtEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints13ConstraintFixEjEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23MatchCallArgumentResultELb0EED2Ev Line | Count | Source | 68 | 1.24k | ~OptionalStorage() { reset(); } |
CSSimplify.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS4_16TypeVariableTypeENS4_4TypeENS4_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEELb0EED2Ev Line | Count | Source | 68 | 1.09k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintEjEELb0EED2Ev Line | Count | Source | 68 | 68 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EED2Ev Line | Count | Source | 68 | 775 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EED2Ev Line | Count | Source | 68 | 779 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_19TypeVariableBindingEEELb0EED2Ev Line | Count | Source | 68 | 83 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintENS5_5ScoreEEELb0EED2Ev Line | Count | Source | 68 | 23 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_17DisjunctionChoiceEEELb0EED2Ev Line | Count | Source | 68 | 23 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ConjunctionStep14SolverSnapshotELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreIPN5swift11DeclContextEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS5_11constraints17ConstraintLocatorEEEEjEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_18ConjunctionElementEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17DisjunctionChoiceELb0EED2Ev Line | Count | Source | 68 | 630 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJN5swift21ContextualTypePurposeENS4_4TypeES6_EEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_12ArgumentListEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference17PotentialBindingsELb0EED2Ev Line | Count | Source | 68 | 2.86k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EED2Ev Line | Count | Source | 68 | 1.10k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclENS4_4TypeEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift4ExprEEELb0EED2Ev Line | Count | Source | 68 | 15 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EED2Ev Line | Count | Source | 68 | 1.68k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift20GenericTypeParamTypeENS4_15RequirementKindEEELb0EED2Ev Line | Count | Source | 68 | 2.89k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EED2Ev Line | Count | Source | 68 | 53 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift20GenericTypeParamTypeEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift15ConcreteDeclRefENS4_9SourceLocEEELb0EED2Ev Line | Count | Source | 68 | 54 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeES5_EELb0EED2Ev Line | Count | Source | 68 | 726 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift11SourceRangeEEELb0EED2Ev Line | Count | Source | 68 | 70 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift11constraints8SolutionENS2_9allocatorIS6_EEEELb0EED2Ev Line | Count | Source | 68 | 113 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EED2Ev Line | Count | Source | 68 | 5.16k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystemELb0EED2Ev Line | Count | Source | 68 | 982 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ConformanceCheckerELb0EED2Ev Line | Count | Source | 68 | 70 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EED2Ev Line | Count | Source | 68 | 59 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EED2Ev Line | Count | Source | 68 | 259 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EED2Ev Line | Count | Source | 68 | 172 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints8SolutionELb0EED2Ev Line | Count | Source | 68 | 925 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EED2Ev Line | Count | Source | 68 | 4.67k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EED2Ev Line | Count | Source | 68 | 348 | ~OptionalStorage() { reset(); } |
TypeCheckStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117FunctionBodyTimerELb0EED2Ev Line | Count | Source | 68 | 148 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EED2Ev TypeCheckSwitchStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EED2Ev Line | Count | Source | 68 | 143 | ~OptionalStorage() { reset(); } |
TypeCheckType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126SILInnerGenericContextRAIIELb0EED2Ev Line | Count | Source | 68 | 50 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticSuppressionELb0EED2Ev Line | Count | Source | 68 | 69 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallStringILj128EEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EED2Ev Line | Count | Source | 68 | 304 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_6APSIntEN5swift4TypeEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EED2Ev Line | Count | Source | 68 | 1.49k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EED2Ev Line | Count | Source | 68 | 2.84k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticTransactionELb0EED2Ev Line | Count | Source | 68 | 17 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17ParseFunctionBodyELb0EED2Ev Line | Count | Source | 68 | 11 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser28CancellableBacktrackingScopeELb0EED2Ev Line | Count | Source | 68 | 224 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser13ContextChangeELb0EED2Ev Line | Count | Source | 68 | 170 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5Lexer21ForwardSlashRegexRAIIELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreINS_8OptionalIN5swift12StableHasherEEEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift5TokenENS2_9allocatorIS5_EEEELb0EED2Ev Line | Count | Source | 68 | 17 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17BacktrackingScopeELb0EED2Ev Line | Count | Source | 68 | 44 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ClangTypeConverterELb0EED2Ev Line | Count | Source | 68 | 15 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24UnexpectedClangTypeErrorELb0EED2Ev Line | Count | Source | 68 | 109k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIN5swift10IdentifierENS3_12PluginLoader11PluginEntryENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EED2Ev Line | Count | Source | 68 | 15 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EED2Ev ASTPrinter.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111TypePrinterELb0EED2Ev Line | Count | Source | 68 | 332 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S9_EEEELb0EED2Ev Line | Count | Source | 68 | 2.21k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8TypeReprEjEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EED2Ev Line | Count | Source | 68 | 468 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EED2Ev Line | Count | Source | 68 | 2.54k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ExternalSourceLocs7RawLocsELb0EED2Ev Line | Count | Source | 68 | 31 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EED2Ev Line | Count | Source | 68 | 30.9k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPN5swift9ValueDeclEEELb0EED2Ev Line | Count | Source | 68 | 18.9k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8CaseStmtEPNS4_7PatternEEELb0EED2Ev Line | Count | Source | 68 | 6.93k | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessLevelES5_EELb0EED2Ev Line | Count | Source | 68 | 25 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EED2Ev Line | Count | Source | 68 | 31.9k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EED2Ev Line | Count | Source | 68 | 17 | ~OptionalStorage() { reset(); } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10ModuleDeclENS4_10IdentifierEEELb0EED2Ev Line | Count | Source | 68 | 1.26k | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift7CanTypeELj4EEELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13ArchetypeTypeEPNS4_23OpaqueTypeArchetypeTypeEEELb0EED2Ev Line | Count | Source | 68 | 59 | ~OptionalStorage() { reset(); } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS2_9allocatorIS6_EEEELb0EED2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_16NamedRegionTimerELb0EED2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIiNS2_9allocatorIiEEEELb0EED2Ev Line | Count | Source | 68 | 7 | ~OptionalStorage() { reset(); } |
|
69 | | |
70 | 320k | constexpr OptionalStorage() noexcept : empty() {}_ZN4llvm15optional_detail15OptionalStorageIN5swift10DiagnosticELb0EEC2Ev Line | Count | Source | 70 | 41 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EEC2Ev Line | Count | Source | 70 | 19 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEC2Ev Line | Count | Source | 70 | 46.8k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEC2Ev Line | Count | Source | 70 | 4.80k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EEC2Ev Line | Count | Source | 70 | 105 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift37BufferIndirectlyCausingDiagnosticRAIIELb0EEC2Ev Line | Count | Source | 70 | 5 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EEC2Ev Line | Count | Source | 70 | 16 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28PrettyStackTraceFileContentsELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift12dependencies14BatchScanInputENS2_9allocatorIS6_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__13setIaNS2_4lessIaEENS2_9allocatorIaEEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3orc23JITTargetMachineBuilderELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24FrontendInputsAndOutputsELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__13setINS_9StringRefENS2_4lessIS4_EENS2_9allocatorIS4_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19OutputFilesComputerELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift24SupplementaryOutputPathsENS2_9allocatorIS5_EEEELb0EEC2Ev Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS3_11ActionCacheENS3_9ObjectRefERNS2_16DiagnosticEngineERKNS2_24FrontendInputsAndOutputsERNS2_27CachingDiagnosticsProcessorEbE11OutputEntryLb0EEC2Ev DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EEC2Ev Line | Count | Source | 70 | 194 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrINS_12MemoryBufferENS2_14default_deleteIS4_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyInfoELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIN5swift10IdentifierENS3_12PluginLoader11PluginEntryENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EEC2Ev Line | Count | Source | 70 | 15 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16DiagnosticEngineELb0EEC2Ev Line | Count | Source | 70 | 1 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen22NativeConventionSchemaELb0EEC2Ev Line | Count | Source | 70 | 5 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen19ConstantInitBuilderELb0EEC2Ev Line | Count | Source | 70 | 153 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen18AsyncContextLayoutELb0EEC2Ev Line | Count | Source | 70 | 8 | constexpr OptionalStorage() noexcept : empty() {} |
GenMeta.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_129GenericSignatureHeaderBuilderELb0EEC2Ev Line | Count | Source | 70 | 19 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEELb0EEC2Ev Line | Count | Source | 70 | 16 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14FulfillmentMapELb0EEC2Ev Line | Count | Source | 70 | 8 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEC2Ev Line | Count | Source | 70 | 835 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen16YAMLTypeInfoNodeELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignature16DirectResultTypeELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignatureELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EEC2Ev Line | Count | Source | 70 | 4 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_3vfs10OutputFileELb0EEC2Ev Line | Count | Source | 70 | 2 | constexpr OptionalStorage() noexcept : empty() {} |
IRGen.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SymbolSourcesToEmitELb0EEC2Ev Line | Count | Source | 70 | 2 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EEC2Ev Line | Count | Source | 70 | 109 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EEC2Ev Line | Count | Source | 70 | 15 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ClusteredBitVectorELb0EEC2Ev Line | Count | Source | 70 | 7 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EEC2Ev Line | Count | Source | 70 | 1.43k | constexpr OptionalStorage() noexcept : empty() {} |
IRGenSIL.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112LoweredValueELb0EEC2Ev Line | Count | Source | 70 | 96 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift14CanTypeWrapperINS4_15ExistentialTypeEEEjEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_10DataLayoutELb0EEC2Ev Line | Count | Source | 70 | 4 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14YAMLModuleNodeELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S6_EEEELb0EEC2Ev Line | Count | Source | 70 | 2 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18DiverseValueBufferINS2_8Lowering7CleanupEEELb0EEC2Ev Line | Count | Source | 70 | 301 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering5ScopeELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8Lowering12ManagedValueES6_EELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering24ConvertingInitializationELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EEC2Ev Line | Count | Source | 70 | 308 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS2_14default_deleteIS6_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13ArgumentScopeELb0EEC2Ev SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16CalleeELb0EEC2Ev Line | Count | Source | 70 | 69 | constexpr OptionalStorage() noexcept : empty() {} |
SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EEC2Ev Line | Count | Source | 70 | 158 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift4ExprELj2EEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering21FormalEvaluationScopeELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6RValueELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering27InitializeDistActorIdentityELb0EEC2Ev Line | Count | Source | 70 | 113 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14SILGenFunction15OpaqueValueRAIIELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EEC2Ev Line | Count | Source | 70 | 1 | constexpr OptionalStorage() noexcept : empty() {} |
SILGenPoly.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113ResultPlannerELb0EEC2Ev Line | Count | Source | 70 | 25 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering22FunctionInputGeneratorELb0EEC2Ev Line | Count | Source | 70 | 65 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EEC2Ev Line | Count | Source | 70 | 3.87k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EEC2Ev Line | Count | Source | 70 | 5.31k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EEC2Ev Line | Count | Source | 70 | 409 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EEC2Ev Line | Count | Source | 70 | 257 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS5_Lj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S7_EEEELb0EEC2Ev Line | Count | Source | 70 | 38 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS3_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S9_EEEELb0EEC2Ev Line | Count | Source | 70 | 38 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EEC2Ev Line | Count | Source | 70 | 198 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EEC2Ev Line | Count | Source | 70 | 11 | constexpr OptionalStorage() noexcept : empty() {} |
DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EEC2Ev Line | Count | Source | 70 | 149 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117ConflictingAccessELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_14AutoDiffConfigEEELb0EEC2Ev Line | Count | Source | 70 | 1 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EEC2Ev Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119AvailableValueStoreELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEELb0EEC2Ev Line | Count | Source | 70 | 148 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift7SILTypeEjEELb0EEC2Ev Line | Count | Source | 70 | 19 | constexpr OptionalStorage() noexcept : empty() {} |
PredictableMemOpt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EEC2Ev Line | Count | Source | 70 | 46 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EEC2Ev Line | Count | Source | 70 | 2.02k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEC2Ev Line | Count | Source | 70 | 26.8k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EEC2Ev Line | Count | Source | 70 | 71 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EEC2Ev Line | Count | Source | 70 | 45 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16InstModCallbacksELb0EEC2Ev Line | Count | Source | 70 | 5.18k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ValueLifetimeAnalysisELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EEC2Ev Line | Count | Source | 70 | 12.1k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift15SILPrintContextELb0EEC2Ev Line | Count | Source | 70 | 1.13k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EEC2Ev Line | Count | Source | 70 | 822 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EEC2Ev Line | Count | Source | 70 | 77 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS7_vEENS_6detail12DenseMapPairIS7_jEEEELb0EEC2Ev Line | Count | Source | 70 | 1.32k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEELb0EEC2Ev Line | Count | Source | 70 | 1.98k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13BasicBlockSetELb0EEC2Ev Line | Count | Source | 70 | 998 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11SILFunctionENS4_15SubstitutionMapEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockES6_EELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EEC2Ev Line | Count | Source | 70 | 2.18k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ReferenceMetaDataELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EEC2Ev Line | Count | Source | 70 | 4 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift6driver3Job9ConditionEbEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EEC2Ev Line | Count | Source | 70 | 32 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EEC2Ev Line | Count | Source | 70 | 6.28k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EEC2Ev Line | Count | Source | 70 | 1 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfoELb0EEC2Ev Line | Count | Source | 70 | 1 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift13serialization26PrettyStackTraceModuleFileELb0EEC2Ev Line | Count | Source | 70 | 69 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeEjEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift24SerializedModuleBaseNameELb0EEC2Ev Line | Count | Source | 70 | 198 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13TypeConverter18GenericContextRAIIELb0EEC2Ev Line | Count | Source | 70 | 287 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EEC2Ev Line | Count | Source | 70 | 268 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_jEEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EEC2Ev Line | Count | Source | 70 | 4 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2Ev Line | Count | Source | 70 | 340 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EEC2Ev Line | Count | Source | 70 | 10.9k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_8CaseStmtEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EEC2Ev Line | Count | Source | 70 | 775 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EEC2Ev Line | Count | Source | 70 | 779 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints13ConstraintFixEjEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23MatchCallArgumentResultELb0EEC2Ev Line | Count | Source | 70 | 2 | constexpr OptionalStorage() noexcept : empty() {} |
CSSimplify.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS4_16TypeVariableTypeENS4_4TypeENS4_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEELb0EEC2Ev Line | Count | Source | 70 | 1.09k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints8SolutionELb0EEC2Ev Line | Count | Source | 70 | 380 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift11constraints8SolutionENS2_9allocatorIS6_EEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintEjEELb0EEC2Ev Line | Count | Source | 70 | 33 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17DisjunctionChoiceELb0EEC2Ev Line | Count | Source | 70 | 16 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_19TypeVariableBindingEEELb0EEC2Ev Line | Count | Source | 70 | 83 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_17DisjunctionChoiceEEELb0EEC2Ev Line | Count | Source | 70 | 23 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintENS5_5ScoreEEELb0EEC2Ev Line | Count | Source | 70 | 23 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_18ConjunctionElementEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS5_11constraints17ConstraintLocatorEEEEjEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ConjunctionStep14SolverSnapshotELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreIPN5swift11DeclContextEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJN5swift21ContextualTypePurposeENS4_4TypeES6_EEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_12ArgumentListEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference17PotentialBindingsELb0EEC2Ev Line | Count | Source | 70 | 2.86k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EEC2Ev Line | Count | Source | 70 | 1.10k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift4ExprEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeES5_EELb0EEC2Ev Line | Count | Source | 70 | 726 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclENS4_4TypeEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EEC2Ev Line | Count | Source | 70 | 4.67k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EEC2Ev Line | Count | Source | 70 | 170 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift20GenericTypeParamTypeENS4_15RequirementKindEEELb0EEC2Ev Line | Count | Source | 70 | 2.60k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EEC2Ev Line | Count | Source | 70 | 53 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift20GenericTypeParamTypeEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift15ConcreteDeclRefENS4_9SourceLocEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift11SourceRangeEEELb0EEC2Ev Line | Count | Source | 70 | 70 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EEC2Ev Line | Count | Source | 70 | 172 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EEC2Ev Line | Count | Source | 70 | 4.74k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystemELb0EEC2Ev Line | Count | Source | 70 | 982 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EEC2Ev Line | Count | Source | 70 | 59 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ConformanceCheckerELb0EEC2Ev Line | Count | Source | 70 | 70 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EEC2Ev Line | Count | Source | 70 | 205 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EEC2Ev Line | Count | Source | 70 | 174 | constexpr OptionalStorage() noexcept : empty() {} |
TypeCheckStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117FunctionBodyTimerELb0EEC2Ev Line | Count | Source | 70 | 148 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EEC2Ev Unexecuted instantiation: TypeCheckSwitchStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EEC2Ev TypeCheckType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126SILInnerGenericContextRAIIELb0EEC2Ev Line | Count | Source | 70 | 50 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticSuppressionELb0EEC2Ev Line | Count | Source | 70 | 69 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EEC2Ev Line | Count | Source | 70 | 24 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallStringILj128EEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_6APSIntEN5swift4TypeEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EEC2Ev Line | Count | Source | 70 | 984 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EEC2Ev Line | Count | Source | 70 | 2.84k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticTransactionELb0EEC2Ev Line | Count | Source | 70 | 17 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17ParseFunctionBodyELb0EEC2Ev Line | Count | Source | 70 | 11 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser28CancellableBacktrackingScopeELb0EEC2Ev Line | Count | Source | 70 | 224 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser13ContextChangeELb0EEC2Ev Line | Count | Source | 70 | 170 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5Lexer21ForwardSlashRegexRAIIELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreINS_8OptionalIN5swift12StableHasherEEEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift5TokenENS2_9allocatorIS5_EEEELb0EEC2Ev Line | Count | Source | 70 | 17 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17BacktrackingScopeELb0EEC2Ev Line | Count | Source | 70 | 44 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EEC2Ev Line | Count | Source | 70 | 2 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15AccessNotesFileELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessLevelES5_EELb0EEC2Ev Line | Count | Source | 70 | 6 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ClangTypeConverterELb0EEC2Ev Line | Count | Source | 70 | 15 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPN5swift9ValueDeclEEELb0EEC2Ev Line | Count | Source | 70 | 545 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S9_EEEELb0EEC2Ev Line | Count | Source | 70 | 2.21k | constexpr OptionalStorage() noexcept : empty() {} |
ASTPrinter.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111TypePrinterELb0EEC2Ev Line | Count | Source | 70 | 332 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EEC2Ev Line | Count | Source | 70 | 468 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8TypeReprEjEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EEC2Ev Line | Count | Source | 70 | 2.54k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EEC2Ev Line | Count | Source | 70 | 30.9k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8CaseStmtEPNS4_7PatternEEELb0EEC2Ev Line | Count | Source | 70 | 6.91k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EEC2Ev Line | Count | Source | 70 | 89 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift24UnexpectedClangTypeErrorELb0EEC2Ev Line | Count | Source | 70 | 109k | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies18SourceFileDepGraphELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10ModuleDeclENS4_10IdentifierEEELb0EEC2Ev Line | Count | Source | 70 | 1.26k | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ExternalSourceLocs7RawLocsELb0EEC2Ev Line | Count | Source | 70 | 31 | constexpr OptionalStorage() noexcept : empty() {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EEC2Ev Line | Count | Source | 70 | 17 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies25DependencyScanningServiceELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift7CanTypeELj4EEELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13ArchetypeTypeEPNS4_23OpaqueTypeArchetypeTypeEEELb0EEC2Ev Line | Count | Source | 70 | 59 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS2_9allocatorIS6_EEEELb0EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_16NamedRegionTimerELb0EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIiNS2_9allocatorIiEEEELb0EEC2Ev Line | Count | Source | 70 | 1 | constexpr OptionalStorage() noexcept : empty() {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EEC2Ev |
71 | | |
72 | 40.5k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { |
73 | 40.5k | if (other.has_value()) { |
74 | 9.13k | emplace(other.val); |
75 | 9.13k | } |
76 | 40.5k | } _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EEC1ERKSB_ Line | Count | Source | 72 | 13 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 13 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 13 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EEC1ERKS6_ Line | Count | Source | 72 | 14 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 14 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 14 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EEC1ERKSA_ _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEC1ERKS9_ Line | Count | Source | 72 | 2 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 2 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 2 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EEC1ERKS4_ Line | Count | Source | 72 | 2 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 2 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 2 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EEC1ERKS5_ DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EEC1ERKS5_ Line | Count | Source | 72 | 84 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 84 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 84 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EEC1ERKS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EEC1ERKS5_ Line | Count | Source | 72 | 1 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 1 | if (other.has_value()) { | 74 | 1 | emplace(other.val); | 75 | 1 | } | 76 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EEC1ERKS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EEC1ERKS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EEC1ERKS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EEC1ERKS9_ _ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEC1ERKS3_ Line | Count | Source | 72 | 376 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 376 | if (other.has_value()) { | 74 | 376 | emplace(other.val); | 75 | 376 | } | 76 | 376 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EEC1ERKS3_ Line | Count | Source | 72 | 2 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 2 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 2 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EEC1ERKS6_ Line | Count | Source | 72 | 71 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 71 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 71 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EEC1ERKS5_ Line | Count | Source | 72 | 765 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 765 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 765 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EEC1ERKS8_ Line | Count | Source | 72 | 3.08k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 3.08k | if (other.has_value()) { | 74 | 1.72k | emplace(other.val); | 75 | 1.72k | } | 76 | 3.08k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EEC1ERKS8_ Line | Count | Source | 72 | 4.65k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 4.65k | if (other.has_value()) { | 74 | 3.45k | emplace(other.val); | 75 | 3.45k | } | 76 | 4.65k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EEC1ERKS9_ Line | Count | Source | 72 | 124 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 124 | if (other.has_value()) { | 74 | 119 | emplace(other.val); | 75 | 119 | } | 76 | 124 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EEC1ERKS9_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EEC1ERKS8_ Line | Count | Source | 72 | 130 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 130 | if (other.has_value()) { | 74 | 13 | emplace(other.val); | 75 | 13 | } | 76 | 130 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1ERKSM_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EEC1ERKS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1ERKSN_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EEC1ERKSM_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EEC1ERKSL_ Line | Count | Source | 72 | 1.67k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 1.67k | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 1.67k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1ERKSK_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EEC1ERKSC_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EEC1ERKSI_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEC1ERKS4_ Line | Count | Source | 72 | 941 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 941 | if (other.has_value()) { | 74 | 179 | emplace(other.val); | 75 | 179 | } | 76 | 941 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EEC1ERKS7_ Line | Count | Source | 72 | 37 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 37 | if (other.has_value()) { | 74 | 16 | emplace(other.val); | 75 | 16 | } | 76 | 37 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EEC1ERKSP_ Line | Count | Source | 72 | 10.0k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 10.0k | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 10.0k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EEC1ERKS8_ Line | Count | Source | 72 | 658 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 658 | if (other.has_value()) { | 74 | 184 | emplace(other.val); | 75 | 184 | } | 76 | 658 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EEC1ERKSD_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EEC1ERKS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EEC1ERKSB_ _ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EEC1ERKS5_ Line | Count | Source | 72 | 32 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 32 | if (other.has_value()) { | 74 | 32 | emplace(other.val); | 75 | 32 | } | 76 | 32 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EEC1ERKS3_ Line | Count | Source | 72 | 8 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 8 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 8 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EEC1ERKSB_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1ERKSN_ Line | Count | Source | 72 | 266 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 266 | if (other.has_value()) { | 74 | 28 | emplace(other.val); | 75 | 28 | } | 76 | 266 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EEC1ERKS8_ Line | Count | Source | 72 | 99 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 99 | if (other.has_value()) { | 74 | 17 | emplace(other.val); | 75 | 17 | } | 76 | 99 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EEC1ERKS5_ Line | Count | Source | 72 | 1.32k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 1.32k | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 1.32k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EEC1ERKS4_ Line | Count | Source | 72 | 44 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 44 | if (other.has_value()) { | 74 | 41 | emplace(other.val); | 75 | 41 | } | 76 | 44 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EEC1ERKS5_ Line | Count | Source | 72 | 86 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 86 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 86 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EEC1ERKS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EEC1ERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EEC1ERKSC_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EEC1ERKS9_ Line | Count | Source | 72 | 492 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 492 | if (other.has_value()) { | 74 | 490 | emplace(other.val); | 75 | 490 | } | 76 | 492 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EEC1ERKSC_ Line | Count | Source | 72 | 918 | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 918 | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 918 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EEC1ERKSA_ Line | Count | Source | 72 | 11.9k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 11.9k | if (other.has_value()) { | 74 | 0 | emplace(other.val); | 75 | 0 | } | 76 | 11.9k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEC1ERKS4_ Line | Count | Source | 72 | 2.67k | constexpr OptionalStorage(OptionalStorage const &other) : OptionalStorage() { | 73 | 2.67k | if (other.has_value()) { | 74 | 2.46k | emplace(other.val); | 75 | 2.46k | } | 76 | 2.67k | } |
|
77 | 20.8k | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { |
78 | 20.8k | if (other.has_value()) { |
79 | 4.35k | emplace(std::move(other.val)); |
80 | 4.35k | } |
81 | 20.8k | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EEC1EOSA_ DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EEC1EOS5_ Line | Count | Source | 77 | 72 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 72 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 72 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EEC1EOSC_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEC1EOS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EEC1EOS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EEC1EOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EEC1EOS9_ _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EEC1EOS5_ Line | Count | Source | 77 | 341 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 341 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 341 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEC1EOS3_ Line | Count | Source | 77 | 247 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 247 | if (other.has_value()) { | 79 | 216 | emplace(std::move(other.val)); | 80 | 216 | } | 81 | 247 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EEC1EOSB_ Line | Count | Source | 77 | 4 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 4 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 4 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EEC1EOS6_ Line | Count | Source | 77 | 29 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 29 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 29 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EEC1EOS7_ Line | Count | Source | 77 | 229 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 229 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 229 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EEC1EOS5_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EEC1EOS8_ Line | Count | Source | 77 | 494 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 494 | if (other.has_value()) { | 79 | 490 | emplace(std::move(other.val)); | 80 | 490 | } | 81 | 494 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EEC1EOS8_ Line | Count | Source | 77 | 523 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 523 | if (other.has_value()) { | 79 | 506 | emplace(std::move(other.val)); | 80 | 506 | } | 81 | 523 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EEC1EOS9_ Line | Count | Source | 77 | 254 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 254 | if (other.has_value()) { | 79 | 254 | emplace(std::move(other.val)); | 80 | 254 | } | 81 | 254 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EEC1EOS9_ Line | Count | Source | 77 | 230 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 230 | if (other.has_value()) { | 79 | 230 | emplace(std::move(other.val)); | 80 | 230 | } | 81 | 230 | } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EEC1EOSD_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1EOSM_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EEC1EOS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EEC1EOSA_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1EOSN_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EEC1EOSM_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EEC1EOSL_ Line | Count | Source | 77 | 176 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 176 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 176 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1EOSK_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EEC1EOSC_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EEC1EOSI_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEC1EOS4_ Line | Count | Source | 77 | 482 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 482 | if (other.has_value()) { | 79 | 316 | emplace(std::move(other.val)); | 80 | 316 | } | 81 | 482 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EEC1EOS6_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EEC1EOSP_ Line | Count | Source | 77 | 1.06k | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 1.06k | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 1.06k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EEC1EOS9_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EEC1EOS8_ Line | Count | Source | 77 | 121 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 121 | if (other.has_value()) { | 79 | 121 | emplace(std::move(other.val)); | 80 | 121 | } | 81 | 121 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EEC1EOSD_ Line | Count | Source | 77 | 46 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 46 | if (other.has_value()) { | 79 | 46 | emplace(std::move(other.val)); | 80 | 46 | } | 81 | 46 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EEC1EOS8_ _ZN4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EEC1EOS4_ Line | Count | Source | 77 | 1.08k | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 1.08k | if (other.has_value()) { | 79 | 1.08k | emplace(std::move(other.val)); | 80 | 1.08k | } | 81 | 1.08k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EEC1EOSC_ Line | Count | Source | 77 | 3 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 3 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 3 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EEC1EOSF_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EEC1EOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EEC1EOS5_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC1EOSN_ Line | Count | Source | 77 | 28 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 28 | if (other.has_value()) { | 79 | 14 | emplace(std::move(other.val)); | 80 | 14 | } | 81 | 28 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EEC1EOS8_ Line | Count | Source | 77 | 484 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 484 | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 484 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EEC1EOS5_ Line | Count | Source | 77 | 2.08k | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 2.08k | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 2.08k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EEC1EOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EEC1EOS9_ _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EEC1EOSD_ Line | Count | Source | 77 | 174 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 174 | if (other.has_value()) { | 79 | 174 | emplace(std::move(other.val)); | 80 | 174 | } | 81 | 174 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EEC1EOS4_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EEC1EOSC_ Line | Count | Source | 77 | 1.12k | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 1.12k | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 1.12k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EEC1EOSA_ Line | Count | Source | 77 | 10.6k | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 10.6k | if (other.has_value()) { | 79 | 0 | emplace(std::move(other.val)); | 80 | 0 | } | 81 | 10.6k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEC1EOS4_ Line | Count | Source | 77 | 966 | constexpr OptionalStorage(OptionalStorage &&other) : OptionalStorage() { | 78 | 966 | if (other.has_value()) { | 79 | 900 | emplace(std::move(other.val)); | 80 | 900 | } | 81 | 966 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EEC1EOSA_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EEC1EOSA_ |
82 | | |
83 | | template <class... Args> |
84 | | constexpr explicit OptionalStorage(std::in_place_t, Args &&...args) |
85 | 61.8k | : val(std::forward<Args>(args)...), hasVal(true) {}_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EEC2IJSB_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 224 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EEC2IJRKS9_EEENS3_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ModuleDependencyIDELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift12dependencies14BatchScanInputENS2_9allocatorIS6_EEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationELb0EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift24FrontendInputsAndOutputsELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 13 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__13setINS_9StringRefENS2_4lessIS4_EENS2_9allocatorIS4_EEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 13 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19OutputFilesComputerELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 11 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EEC2IJRKSB_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 11 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift24SupplementaryOutputPathsENS2_9allocatorIS5_EEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 22 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24SupplementaryOutputPathsELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 11 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS3_11ActionCacheENS3_9ObjectRefERNS2_16DiagnosticEngineERKNS2_24FrontendInputsAndOutputsERNS2_27CachingDiagnosticsProcessorEbE11OutputEntryLb0EEC2IJSG_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 19 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrINS_12MemoryBufferENS2_14default_deleteIS4_EEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EEC2IJRKS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EEC2IJRKS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 131 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEC2IJRKS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 32 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen16YAMLTypeInfoNodeELb0EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignature16DirectResultTypeELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignatureELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: IRGen.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SymbolSourcesToEmitELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift14CanTypeWrapperINS4_15ExistentialTypeEEEjEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14YAMLModuleNodeELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8Lowering12ManagedValueES6_EELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift4ExprELj2EEELb0EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockES6_EELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 482 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 495 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 124 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 140 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 17 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117ConflictingAccessELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_14AutoDiffConfigEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 8 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2IJSL_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EEC2IJRKS9_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2IJSM_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_8SILValueEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EEC2IJSL_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift7SILTypeEjEELb0EEC2IJS6_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 44 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EEC2IJSK_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2IJSJ_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EEC2IJSB_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EEC2IJSH_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 1.51k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EEC2IJSO_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 121 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EEC2IJSC_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 46 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EEC2IJS7_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEELb0EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11SILFunctionENS4_15SubstitutionMapEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ReferenceMetaDataELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EEC2IJRKSA_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EEC2IJSB_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift6driver3Job9ConditionEbEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EEC2IJS4_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EEC2IJSE_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EEC2IJRKSE_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EEC2IJSA_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeEjEELb0EEC2IJS6_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 822 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 15 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EEC2IJS6_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 6 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 8 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEC2IJSM_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EEC2IJRKS9_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_8CaseStmtEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints13ConstraintFixEjEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23MatchCallArgumentResultELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 1.23k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS4_16TypeVariableTypeENS4_4TypeENS4_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEELb0EEC2IJSE_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints8SolutionELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 545 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift11constraints8SolutionENS2_9allocatorIS6_EEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 113 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintEjEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 35 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17DisjunctionChoiceELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 614 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJN5swift21ContextualTypePurposeENS4_4TypeES6_EEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_12ArgumentListEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift4ExprEEELb0EEC2IJRKS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 15 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeES5_EELb0EEC2IJS6_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclENS4_4TypeEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 1.51k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift20GenericTypeParamTypeENS4_15RequirementKindEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 288 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift15ConcreteDeclRefENS4_9SourceLocEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 54 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 54 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 426 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EEC2IJSC_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 174 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ TypeCheckSwitchStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 91 | : val(std::forward<Args>(args)...), hasVal(true) {} |
TypeCheckSwitchStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 52 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEC2IJRKS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallStringILj128EEELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_6APSIntEN5swift4TypeEEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 511 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EEC2IJRKS8_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift5TokenENS2_9allocatorIS5_EEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 163 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15AccessNotesFileELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessLevelES5_EELb0EEC2IJS6_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 19 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPN5swift9ValueDeclEEELb0EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 18.3k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EEC2IJS4_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8TypeReprEjEELb0EEC2IJS7_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EEC2IJSB_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8CaseStmtEPNS4_7PatternEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 20 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 6.33k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 25.5k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24UnexpectedClangTypeErrorELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies18SourceFileDepGraphELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 962 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ExternalSourceLocs7RawLocsELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13ArchetypeTypeEPNS4_23OpaqueTypeArchetypeTypeEEELb0EEC2IJS9_EEENS2_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 132 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEC2IJS8_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 209 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIiNS2_9allocatorIiEEEELb0EEC2IJS6_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 85 | 6 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 85 | 13 | : val(std::forward<Args>(args)...), hasVal(true) {} |
|
86 | | |
87 | 419k | void reset() noexcept { |
88 | 419k | if (hasVal) { |
89 | 98.1k | val.~T(); |
90 | 98.1k | hasVal = false; |
91 | 98.1k | } |
92 | 419k | } _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EE5resetEv Line | Count | Source | 87 | 5.09k | void reset() noexcept { | 88 | 5.09k | if (hasVal) { | 89 | 211 | val.~T(); | 90 | 211 | hasVal = false; | 91 | 211 | } | 92 | 5.09k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EE5resetEv Line | Count | Source | 87 | 4 | void reset() noexcept { | 88 | 4 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 4 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10DiagnosticELb0EE5resetEv Line | Count | Source | 87 | 98 | void reset() noexcept { | 88 | 98 | if (hasVal) { | 89 | 57 | val.~T(); | 90 | 57 | hasVal = false; | 91 | 57 | } | 92 | 98 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EE5resetEv Line | Count | Source | 87 | 16 | void reset() noexcept { | 88 | 16 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 16 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIjLj8EEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EE5resetEv Line | Count | Source | 87 | 51.3k | void reset() noexcept { | 88 | 51.3k | if (hasVal) { | 89 | 5.23k | val.~T(); | 90 | 5.23k | hasVal = false; | 91 | 5.23k | } | 92 | 51.3k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8TypeReprEjEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EE5resetEv Line | Count | Source | 87 | 468 | void reset() noexcept { | 88 | 468 | if (hasVal) { | 89 | 88 | val.~T(); | 90 | 88 | hasVal = false; | 91 | 88 | } | 92 | 468 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeEjEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift18ExternalSourceLocs7RawLocsELb0EE5resetEv Line | Count | Source | 87 | 31 | void reset() noexcept { | 88 | 31 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 31 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift5TokenENS2_9allocatorIS5_EEEELb0EE5resetEv Line | Count | Source | 87 | 17 | void reset() noexcept { | 88 | 17 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 17 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EE5resetEv Line | Count | Source | 87 | 30.0k | void reset() noexcept { | 88 | 30.0k | if (hasVal) { | 89 | 3.61k | val.~T(); | 90 | 3.61k | hasVal = false; | 91 | 3.61k | } | 92 | 30.0k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EE5resetEv Line | Count | Source | 87 | 87 | void reset() noexcept { | 88 | 87 | if (hasVal) { | 89 | 16 | val.~T(); | 90 | 16 | hasVal = false; | 91 | 16 | } | 92 | 87 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EE5resetEv Line | Count | Source | 87 | 67 | void reset() noexcept { | 88 | 67 | if (hasVal) { | 89 | 22 | val.~T(); | 90 | 22 | hasVal = false; | 91 | 22 | } | 92 | 67 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_7remarks11StringTableELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EE5resetEv Line | Count | Source | 87 | 193 | void reset() noexcept { | 88 | 193 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 193 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EE5resetEv Line | Count | Source | 87 | 6.32k | void reset() noexcept { | 88 | 6.32k | if (hasVal) { | 89 | 454 | val.~T(); | 90 | 454 | hasVal = false; | 91 | 454 | } | 92 | 6.32k | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EE5resetEv Line | Count | Source | 87 | 19 | void reset() noexcept { | 88 | 19 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 19 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EE5resetEv Line | Count | Source | 87 | 6 | void reset() noexcept { | 88 | 6 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 6 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies18SourceFileDepGraphELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14WeakTrackingVHELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_21TargetLibraryInfoImplELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13BasicAAResultELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_9AAResultsELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13LazyCallGraph12EdgeSequenceELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6object12VersionEntryELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12Preprocessor19MacroAnnotationInfoELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EE5resetEv Line | Count | Source | 87 | 66 | void reset() noexcept { | 88 | 66 | if (hasVal) { | 89 | 34 | val.~T(); | 90 | 34 | hasVal = false; | 91 | 34 | } | 92 | 66 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJbjjPN5clang4DeclEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang4Sema20ImmediateDiagBuilderELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EE5resetEv Line | Count | Source | 87 | 179 | void reset() noexcept { | 88 | 179 | if (hasVal) { | 89 | 178 | val.~T(); | 90 | 178 | hasVal = false; | 91 | 178 | } | 92 | 179 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift37BufferIndirectlyCausingDiagnosticRAIIELb0EE5resetEv Line | Count | Source | 87 | 7 | void reset() noexcept { | 88 | 7 | if (hasVal) { | 89 | 2 | val.~T(); | 90 | 2 | hasVal = false; | 91 | 2 | } | 92 | 7 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28PrettyStackTraceFileContentsELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EE5resetEv Line | Count | Source | 87 | 304 | void reset() noexcept { | 88 | 304 | if (hasVal) { | 89 | 235 | val.~T(); | 90 | 235 | hasVal = false; | 91 | 235 | } | 92 | 304 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ModuleDependencyIDELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5clang26dependency_directives_scan9DirectiveELj20EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies25DependencyScanningServiceELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__13setIaNS2_4lessIaEENS2_9allocatorIaEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift12dependencies14BatchScanInputENS2_9allocatorIS6_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3orc23JITTargetMachineBuilderELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_3orc15SymbolStringPtrEPNS4_8JITDylibEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__13setIPKNS_11GlobalValueENS2_4lessIS6_EENS2_9allocatorIS6_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignatureELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignature16DirectResultTypeELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__13setINS_9StringRefENS2_4lessIS4_EENS2_9allocatorIS4_EEEELb0EE5resetEv Line | Count | Source | 87 | 13 | void reset() noexcept { | 88 | 13 | if (hasVal) { | 89 | 13 | val.~T(); | 90 | 13 | hasVal = false; | 91 | 13 | } | 92 | 13 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24FrontendInputsAndOutputsELb0EE5resetEv Line | Count | Source | 87 | 13 | void reset() noexcept { | 88 | 13 | if (hasVal) { | 89 | 13 | val.~T(); | 90 | 13 | hasVal = false; | 91 | 13 | } | 92 | 13 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19OutputFilesComputerELb0EE5resetEv Line | Count | Source | 87 | 11 | void reset() noexcept { | 88 | 11 | if (hasVal) { | 89 | 11 | val.~T(); | 90 | 11 | hasVal = false; | 91 | 11 | } | 92 | 11 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift24SupplementaryOutputPathsENS2_9allocatorIS5_EEEELb0EE5resetEv Line | Count | Source | 87 | 22 | void reset() noexcept { | 88 | 22 | if (hasVal) { | 89 | 22 | val.~T(); | 90 | 22 | hasVal = false; | 91 | 22 | } | 92 | 22 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24SupplementaryOutputPathsELb0EE5resetEv Line | Count | Source | 87 | 11 | void reset() noexcept { | 88 | 11 | if (hasVal) { | 89 | 11 | val.~T(); | 90 | 11 | hasVal = false; | 91 | 11 | } | 92 | 11 | } |
Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS3_11ActionCacheENS3_9ObjectRefERNS2_16DiagnosticEngineERKNS2_24FrontendInputsAndOutputsERNS2_27CachingDiagnosticsProcessorEbE11OutputEntryLb0EE5resetEv DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EE5resetEv Line | Count | Source | 87 | 232 | void reset() noexcept { | 88 | 232 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 232 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EE5resetEv Line | Count | Source | 87 | 19 | void reset() noexcept { | 88 | 19 | if (hasVal) { | 89 | 19 | val.~T(); | 90 | 19 | hasVal = false; | 91 | 19 | } | 92 | 19 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrINS_12MemoryBufferENS2_14default_deleteIS4_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15AccessNotesFileELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyInfoELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift16DiagnosticEngineELb0EE5resetEv Line | Count | Source | 87 | 1 | void reset() noexcept { | 88 | 1 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen22NativeConventionSchemaELb0EE5resetEv Line | Count | Source | 87 | 5 | void reset() noexcept { | 88 | 5 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 5 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen19ConstantInitBuilderELb0EE5resetEv Line | Count | Source | 87 | 153 | void reset() noexcept { | 88 | 153 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 153 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen18AsyncContextLayoutELb0EE5resetEv Line | Count | Source | 87 | 8 | void reset() noexcept { | 88 | 8 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 8 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEELb0EE5resetEv Line | Count | Source | 87 | 16 | void reset() noexcept { | 88 | 16 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 16 | } |
GenMeta.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_129GenericSignatureHeaderBuilderELb0EE5resetEv Line | Count | Source | 87 | 20 | void reset() noexcept { | 88 | 20 | if (hasVal) { | 89 | 1 | val.~T(); | 90 | 1 | hasVal = false; | 91 | 1 | } | 92 | 20 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14FulfillmentMapELb0EE5resetEv Line | Count | Source | 87 | 8 | void reset() noexcept { | 88 | 8 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 8 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen16YAMLTypeInfoNodeELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_3vfs10OutputFileELb0EE5resetEv Line | Count | Source | 87 | 2 | void reset() noexcept { | 88 | 2 | if (hasVal) { | 89 | 2 | val.~T(); | 90 | 2 | hasVal = false; | 91 | 2 | } | 92 | 2 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EE5resetEv Line | Count | Source | 87 | 109 | void reset() noexcept { | 88 | 109 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 109 | } |
IRGen.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SymbolSourcesToEmitELb0EE5resetEv Line | Count | Source | 87 | 2 | void reset() noexcept { | 88 | 2 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 2 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS_22TypeIdOffsetVtableInfoENS2_9allocatorIS4_EEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S6_EEEELb0EE5resetEv Line | Count | Source | 87 | 3 | void reset() noexcept { | 88 | 3 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 3 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6VFInfoELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15CostBenefitPairELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_10InlineCostELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_17PreservedAnalysesELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift18ClusteredBitVectorELb0EE5resetEv Line | Count | Source | 87 | 7 | void reset() noexcept { | 88 | 7 | if (hasVal) { | 89 | 2 | val.~T(); | 90 | 2 | hasVal = false; | 91 | 2 | } | 92 | 7 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EE5resetEv Line | Count | Source | 87 | 1.64k | void reset() noexcept { | 88 | 1.64k | if (hasVal) { | 89 | 908 | val.~T(); | 90 | 908 | hasVal = false; | 91 | 908 | } | 92 | 1.64k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EE5resetEv Line | Count | Source | 87 | 15 | void reset() noexcept { | 88 | 15 | if (hasVal) { | 89 | 9 | val.~T(); | 90 | 9 | hasVal = false; | 91 | 9 | } | 92 | 15 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EE5resetEv Line | Count | Source | 87 | 1.53k | void reset() noexcept { | 88 | 1.53k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 1.53k | } |
IRGenSIL.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112LoweredValueELb0EE5resetEv Line | Count | Source | 87 | 96 | void reset() noexcept { | 88 | 96 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 96 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift14CanTypeWrapperINS4_15ExistentialTypeEEEjEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_10DataLayoutELb0EE5resetEv Line | Count | Source | 87 | 4 | void reset() noexcept { | 88 | 4 | if (hasVal) { | 89 | 3 | val.~T(); | 90 | 3 | hasVal = false; | 91 | 3 | } | 92 | 4 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14YAMLModuleNodeELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift18DiverseValueBufferINS2_8Lowering7CleanupEEELb0EE5resetEv Line | Count | Source | 87 | 454 | void reset() noexcept { | 88 | 454 | if (hasVal) { | 89 | 153 | val.~T(); | 90 | 153 | hasVal = false; | 91 | 153 | } | 92 | 454 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering5ScopeELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8Lowering12ManagedValueES6_EELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering24ConvertingInitializationELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EE5resetEv Line | Count | Source | 87 | 308 | void reset() noexcept { | 88 | 308 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 308 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS2_14default_deleteIS6_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13ArgumentScopeELb0EE5resetEv SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EE5resetEv Line | Count | Source | 87 | 158 | void reset() noexcept { | 88 | 158 | if (hasVal) { | 89 | 143 | val.~T(); | 90 | 143 | hasVal = false; | 91 | 143 | } | 92 | 158 | } |
SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16CalleeELb0EE5resetEv Line | Count | Source | 87 | 138 | void reset() noexcept { | 88 | 138 | if (hasVal) { | 89 | 69 | val.~T(); | 90 | 69 | hasVal = false; | 91 | 69 | } | 92 | 138 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift4ExprELj2EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering21FormalEvaluationScopeELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6RValueELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering27InitializeDistActorIdentityELb0EE5resetEv Line | Count | Source | 87 | 113 | void reset() noexcept { | 88 | 113 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 113 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14SILGenFunction15OpaqueValueRAIIELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EE5resetEv Line | Count | Source | 87 | 1 | void reset() noexcept { | 88 | 1 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 1 | } |
SILGenPoly.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113ResultPlannerELb0EE5resetEv Line | Count | Source | 87 | 50 | void reset() noexcept { | 88 | 50 | if (hasVal) { | 89 | 25 | val.~T(); | 90 | 25 | hasVal = false; | 91 | 25 | } | 92 | 50 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering22FunctionInputGeneratorELb0EE5resetEv Line | Count | Source | 87 | 65 | void reset() noexcept { | 88 | 65 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 65 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EE5resetEv Line | Count | Source | 87 | 937 | void reset() noexcept { | 88 | 937 | if (hasVal) { | 89 | 497 | val.~T(); | 90 | 497 | hasVal = false; | 91 | 497 | } | 92 | 937 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EE5resetEv Line | Count | Source | 87 | 654 | void reset() noexcept { | 88 | 654 | if (hasVal) { | 89 | 370 | val.~T(); | 90 | 370 | hasVal = false; | 91 | 370 | } | 92 | 654 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EE5resetEv Line | Count | Source | 87 | 9.89k | void reset() noexcept { | 88 | 9.89k | if (hasVal) { | 89 | 4.45k | val.~T(); | 90 | 4.45k | hasVal = false; | 91 | 4.45k | } | 92 | 9.89k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EE5resetEv Line | Count | Source | 87 | 6.87k | void reset() noexcept { | 88 | 6.87k | if (hasVal) { | 89 | 2.69k | val.~T(); | 90 | 2.69k | hasVal = false; | 91 | 2.69k | } | 92 | 6.87k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EE5resetEv Line | Count | Source | 87 | 8 | void reset() noexcept { | 88 | 8 | if (hasVal) { | 89 | 8 | val.~T(); | 90 | 8 | hasVal = false; | 91 | 8 | } | 92 | 8 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS5_Lj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S7_EEEELb0EE5resetEv Line | Count | Source | 87 | 38 | void reset() noexcept { | 88 | 38 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 38 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS3_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S9_EEEELb0EE5resetEv Line | Count | Source | 87 | 38 | void reset() noexcept { | 88 | 38 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 38 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EE5resetEv Line | Count | Source | 87 | 177 | void reset() noexcept { | 88 | 177 | if (hasVal) { | 89 | 30 | val.~T(); | 90 | 30 | hasVal = false; | 91 | 30 | } | 92 | 177 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EE5resetEv Line | Count | Source | 87 | 20 | void reset() noexcept { | 88 | 20 | if (hasVal) { | 89 | 9 | val.~T(); | 90 | 9 | hasVal = false; | 91 | 9 | } | 92 | 20 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockES6_EELb0EE5resetEv DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE5resetEv Line | Count | Source | 87 | 149 | void reset() noexcept { | 88 | 149 | if (hasVal) { | 89 | 149 | val.~T(); | 90 | 149 | hasVal = false; | 91 | 149 | } | 92 | 149 | } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117ConflictingAccessELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_14AutoDiffConfigEEELb0EE5resetEv Line | Count | Source | 87 | 9 | void reset() noexcept { | 88 | 9 | if (hasVal) { | 89 | 8 | val.~T(); | 90 | 8 | hasVal = false; | 91 | 8 | } | 92 | 9 | } |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_8SILValueEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EE5resetEv Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119AvailableValueStoreELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEELb0EE5resetEv Line | Count | Source | 87 | 148 | void reset() noexcept { | 88 | 148 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 148 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EE5resetEv PredictableMemOpt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EE5resetEv Line | Count | Source | 87 | 92 | void reset() noexcept { | 88 | 92 | if (hasVal) { | 89 | 46 | val.~T(); | 90 | 46 | hasVal = false; | 91 | 46 | } | 92 | 92 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift7SILTypeEjEELb0EE5resetEv Line | Count | Source | 87 | 63 | void reset() noexcept { | 88 | 63 | if (hasVal) { | 89 | 44 | val.~T(); | 90 | 44 | hasVal = false; | 91 | 44 | } | 92 | 63 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EE5resetEv Line | Count | Source | 87 | 2.11k | void reset() noexcept { | 88 | 2.11k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 2.11k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16InstModCallbacksELb0EE5resetEv Line | Count | Source | 87 | 5.18k | void reset() noexcept { | 88 | 5.18k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 5.18k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ValueLifetimeAnalysisELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EE5resetEv Line | Count | Source | 87 | 12.7k | void reset() noexcept { | 88 | 12.7k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 12.7k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EE5resetEv Line | Count | Source | 87 | 4 | void reset() noexcept { | 88 | 4 | if (hasVal) { | 89 | 4 | val.~T(); | 90 | 4 | hasVal = false; | 91 | 4 | } | 92 | 4 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15SILPrintContextELb0EE5resetEv Line | Count | Source | 87 | 2.26k | void reset() noexcept { | 88 | 2.26k | if (hasVal) { | 89 | 1.13k | val.~T(); | 90 | 1.13k | hasVal = false; | 91 | 1.13k | } | 92 | 2.26k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EE5resetEv Line | Count | Source | 87 | 1.29k | void reset() noexcept { | 88 | 1.29k | if (hasVal) { | 89 | 426 | val.~T(); | 90 | 426 | hasVal = false; | 91 | 426 | } | 92 | 1.29k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EE5resetEv Line | Count | Source | 87 | 200 | void reset() noexcept { | 88 | 200 | if (hasVal) { | 89 | 92 | val.~T(); | 90 | 92 | hasVal = false; | 91 | 92 | } | 92 | 200 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS7_vEENS_6detail12DenseMapPairIS7_jEEEELb0EE5resetEv Line | Count | Source | 87 | 1.32k | void reset() noexcept { | 88 | 1.32k | if (hasVal) { | 89 | 6 | val.~T(); | 90 | 6 | hasVal = false; | 91 | 6 | } | 92 | 1.32k | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEELb0EE5resetEv Line | Count | Source | 87 | 2.97k | void reset() noexcept { | 88 | 2.97k | if (hasVal) { | 89 | 998 | val.~T(); | 90 | 998 | hasVal = false; | 91 | 998 | } | 92 | 2.97k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13BasicBlockSetELb0EE5resetEv Line | Count | Source | 87 | 999 | void reset() noexcept { | 88 | 999 | if (hasVal) { | 89 | 1 | val.~T(); | 90 | 1 | hasVal = false; | 91 | 1 | } | 92 | 999 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11SILFunctionENS4_15SubstitutionMapEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EE5resetEv Line | Count | Source | 87 | 4.36k | void reset() noexcept { | 88 | 4.36k | if (hasVal) { | 89 | 2.17k | val.~T(); | 90 | 2.17k | hasVal = false; | 91 | 2.17k | } | 92 | 4.36k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ReferenceMetaDataELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift6driver3Job9ConditionEbEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfoELb0EE5resetEv Line | Count | Source | 87 | 17 | void reset() noexcept { | 88 | 17 | if (hasVal) { | 89 | 17 | val.~T(); | 90 | 17 | hasVal = false; | 91 | 17 | } | 92 | 17 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EE5resetEv Line | Count | Source | 87 | 1 | void reset() noexcept { | 88 | 1 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift13serialization26PrettyStackTraceModuleFileELb0EE5resetEv Line | Count | Source | 87 | 138 | void reset() noexcept { | 88 | 138 | if (hasVal) { | 89 | 69 | val.~T(); | 90 | 69 | hasVal = false; | 91 | 69 | } | 92 | 138 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_18BitstreamBlockInfoELb0EE5resetEv Line | Count | Source | 87 | 146 | void reset() noexcept { | 88 | 146 | if (hasVal) { | 89 | 146 | val.~T(); | 90 | 146 | hasVal = false; | 91 | 146 | } | 92 | 146 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24SerializedModuleBaseNameELb0EE5resetEv Line | Count | Source | 87 | 396 | void reset() noexcept { | 88 | 396 | if (hasVal) { | 89 | 198 | val.~T(); | 90 | 198 | hasVal = false; | 91 | 198 | } | 92 | 396 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13TypeConverter18GenericContextRAIIELb0EE5resetEv Line | Count | Source | 87 | 403 | void reset() noexcept { | 88 | 403 | if (hasVal) { | 89 | 116 | val.~T(); | 90 | 116 | hasVal = false; | 91 | 116 | } | 92 | 403 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_5RegexELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EE5resetEv Line | Count | Source | 87 | 283 | void reset() noexcept { | 88 | 283 | if (hasVal) { | 89 | 15 | val.~T(); | 90 | 15 | hasVal = false; | 91 | 15 | } | 92 | 283 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_jEEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5resetEv Line | Count | Source | 87 | 396 | void reset() noexcept { | 88 | 396 | if (hasVal) { | 89 | 49 | val.~T(); | 90 | 49 | hasVal = false; | 91 | 49 | } | 92 | 396 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EE5resetEv Line | Count | Source | 87 | 21.9k | void reset() noexcept { | 88 | 21.9k | if (hasVal) { | 89 | 10.9k | val.~T(); | 90 | 10.9k | hasVal = false; | 91 | 10.9k | } | 92 | 21.9k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_8CaseStmtEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints13ConstraintFixEjEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23MatchCallArgumentResultELb0EE5resetEv Line | Count | Source | 87 | 1.24k | void reset() noexcept { | 88 | 1.24k | if (hasVal) { | 89 | 1.23k | val.~T(); | 90 | 1.23k | hasVal = false; | 91 | 1.23k | } | 92 | 1.24k | } |
CSSimplify.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS4_16TypeVariableTypeENS4_4TypeENS4_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEELb0EE5resetEv Line | Count | Source | 87 | 1.09k | void reset() noexcept { | 88 | 1.09k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 1.09k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintEjEELb0EE5resetEv Line | Count | Source | 87 | 68 | void reset() noexcept { | 88 | 68 | if (hasVal) { | 89 | 35 | val.~T(); | 90 | 35 | hasVal = false; | 91 | 35 | } | 92 | 68 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_19TypeVariableBindingEEELb0EE5resetEv Line | Count | Source | 87 | 245 | void reset() noexcept { | 88 | 245 | if (hasVal) { | 89 | 81 | val.~T(); | 90 | 81 | hasVal = false; | 91 | 81 | } | 92 | 245 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintENS5_5ScoreEEELb0EE5resetEv Line | Count | Source | 87 | 23 | void reset() noexcept { | 88 | 23 | if (hasVal) { | 89 | 23 | val.~T(); | 90 | 23 | hasVal = false; | 91 | 23 | } | 92 | 23 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_17DisjunctionChoiceEEELb0EE5resetEv Line | Count | Source | 87 | 108 | void reset() noexcept { | 88 | 108 | if (hasVal) { | 89 | 31 | val.~T(); | 90 | 31 | hasVal = false; | 91 | 31 | } | 92 | 108 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreIPN5swift11DeclContextEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS5_11constraints17ConstraintLocatorEEEEjEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ConjunctionStep14SolverSnapshotELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_18ConjunctionElementEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints8SolutionELb0EE5resetEv Line | Count | Source | 87 | 925 | void reset() noexcept { | 88 | 925 | if (hasVal) { | 89 | 545 | val.~T(); | 90 | 545 | hasVal = false; | 91 | 545 | } | 92 | 925 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift11constraints8SolutionENS2_9allocatorIS6_EEEELb0EE5resetEv Line | Count | Source | 87 | 113 | void reset() noexcept { | 88 | 113 | if (hasVal) { | 89 | 113 | val.~T(); | 90 | 113 | hasVal = false; | 91 | 113 | } | 92 | 113 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EE5resetEv Line | Count | Source | 87 | 874 | void reset() noexcept { | 88 | 874 | if (hasVal) { | 89 | 99 | val.~T(); | 90 | 99 | hasVal = false; | 91 | 99 | } | 92 | 874 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EE5resetEv Line | Count | Source | 87 | 833 | void reset() noexcept { | 88 | 833 | if (hasVal) { | 89 | 54 | val.~T(); | 90 | 54 | hasVal = false; | 91 | 54 | } | 92 | 833 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17DisjunctionChoiceELb0EE5resetEv Line | Count | Source | 87 | 630 | void reset() noexcept { | 88 | 630 | if (hasVal) { | 89 | 614 | val.~T(); | 90 | 614 | hasVal = false; | 91 | 614 | } | 92 | 630 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJN5swift21ContextualTypePurposeENS4_4TypeES6_EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_12ArgumentListEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference17PotentialBindingsELb0EE5resetEv Line | Count | Source | 87 | 6.28k | void reset() noexcept { | 88 | 6.28k | if (hasVal) { | 89 | 2.98k | val.~T(); | 90 | 2.98k | hasVal = false; | 91 | 2.98k | } | 92 | 6.28k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EE5resetEv Line | Count | Source | 87 | 1.22k | void reset() noexcept { | 88 | 1.22k | if (hasVal) { | 89 | 113 | val.~T(); | 90 | 113 | hasVal = false; | 91 | 113 | } | 92 | 1.22k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclENS4_4TypeEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift4ExprEEELb0EE5resetEv Line | Count | Source | 87 | 15 | void reset() noexcept { | 88 | 15 | if (hasVal) { | 89 | 15 | val.~T(); | 90 | 15 | hasVal = false; | 91 | 15 | } | 92 | 15 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EE5resetEv Line | Count | Source | 87 | 1.68k | void reset() noexcept { | 88 | 1.68k | if (hasVal) { | 89 | 1.51k | val.~T(); | 90 | 1.51k | hasVal = false; | 91 | 1.51k | } | 92 | 1.68k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift20GenericTypeParamTypeENS4_15RequirementKindEEELb0EE5resetEv Line | Count | Source | 87 | 2.89k | void reset() noexcept { | 88 | 2.89k | if (hasVal) { | 89 | 288 | val.~T(); | 90 | 288 | hasVal = false; | 91 | 288 | } | 92 | 2.89k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EE5resetEv Line | Count | Source | 87 | 53 | void reset() noexcept { | 88 | 53 | if (hasVal) { | 89 | 53 | val.~T(); | 90 | 53 | hasVal = false; | 91 | 53 | } | 92 | 53 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeES5_EELb0EE5resetEv Line | Count | Source | 87 | 726 | void reset() noexcept { | 88 | 726 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 726 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift20GenericTypeParamTypeEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift15ConcreteDeclRefENS4_9SourceLocEEELb0EE5resetEv Line | Count | Source | 87 | 54 | void reset() noexcept { | 88 | 54 | if (hasVal) { | 89 | 54 | val.~T(); | 90 | 54 | hasVal = false; | 91 | 54 | } | 92 | 54 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift11SourceRangeEEELb0EE5resetEv Line | Count | Source | 87 | 70 | void reset() noexcept { | 88 | 70 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 70 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIN5swift10IdentifierENS3_12PluginLoader11PluginEntryENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE5resetEv Line | Count | Source | 87 | 15 | void reset() noexcept { | 88 | 15 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 15 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EE5resetEv Line | Count | Source | 87 | 6.14k | void reset() noexcept { | 88 | 6.14k | if (hasVal) { | 89 | 426 | val.~T(); | 90 | 426 | hasVal = false; | 91 | 426 | } | 92 | 6.14k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystemELb0EE5resetEv Line | Count | Source | 87 | 1.96k | void reset() noexcept { | 88 | 1.96k | if (hasVal) { | 89 | 982 | val.~T(); | 90 | 982 | hasVal = false; | 91 | 982 | } | 92 | 1.96k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ConformanceCheckerELb0EE5resetEv Line | Count | Source | 87 | 79 | void reset() noexcept { | 88 | 79 | if (hasVal) { | 89 | 9 | val.~T(); | 90 | 9 | hasVal = false; | 91 | 9 | } | 92 | 79 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EE5resetEv Line | Count | Source | 87 | 59 | void reset() noexcept { | 88 | 59 | if (hasVal) { | 89 | 30 | val.~T(); | 90 | 30 | hasVal = false; | 91 | 30 | } | 92 | 59 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EE5resetEv Line | Count | Source | 87 | 341 | void reset() noexcept { | 88 | 341 | if (hasVal) { | 89 | 136 | val.~T(); | 90 | 136 | hasVal = false; | 91 | 136 | } | 92 | 341 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EE5resetEv Line | Count | Source | 87 | 172 | void reset() noexcept { | 88 | 172 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 172 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EE5resetEv Line | Count | Source | 87 | 4.67k | void reset() noexcept { | 88 | 4.67k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 4.67k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EE5resetEv Line | Count | Source | 87 | 522 | void reset() noexcept { | 88 | 522 | if (hasVal) { | 89 | 348 | val.~T(); | 90 | 348 | hasVal = false; | 91 | 348 | } | 92 | 522 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EE5resetEv Line | Count | Source | 87 | 30.9k | void reset() noexcept { | 88 | 30.9k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 30.9k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EE5resetEv Line | Count | Source | 87 | 2.54k | void reset() noexcept { | 88 | 2.54k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 2.54k | } |
TypeCheckStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117FunctionBodyTimerELb0EE5resetEv Line | Count | Source | 87 | 148 | void reset() noexcept { | 88 | 148 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 148 | } |
TypeCheckSwitchStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EE5resetEv Line | Count | Source | 87 | 143 | void reset() noexcept { | 88 | 143 | if (hasVal) { | 89 | 143 | val.~T(); | 90 | 143 | hasVal = false; | 91 | 143 | } | 92 | 143 | } |
TypeCheckType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126SILInnerGenericContextRAIIELb0EE5resetEv Line | Count | Source | 87 | 66 | void reset() noexcept { | 88 | 66 | if (hasVal) { | 89 | 16 | val.~T(); | 90 | 16 | hasVal = false; | 91 | 16 | } | 92 | 66 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticSuppressionELb0EE5resetEv Line | Count | Source | 87 | 69 | void reset() noexcept { | 88 | 69 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 69 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallStringILj128EEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12CXXScopeSpecELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_6APSIntEN5swift4TypeEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EE5resetEv Line | Count | Source | 87 | 1.98k | void reset() noexcept { | 88 | 1.98k | if (hasVal) { | 89 | 1.49k | val.~T(); | 90 | 1.49k | hasVal = false; | 91 | 1.49k | } | 92 | 1.98k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EE5resetEv Line | Count | Source | 87 | 2.86k | void reset() noexcept { | 88 | 2.86k | if (hasVal) { | 89 | 20 | val.~T(); | 90 | 20 | hasVal = false; | 91 | 20 | } | 92 | 2.86k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticTransactionELb0EE5resetEv Line | Count | Source | 87 | 17 | void reset() noexcept { | 88 | 17 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 17 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17ParseFunctionBodyELb0EE5resetEv Line | Count | Source | 87 | 11 | void reset() noexcept { | 88 | 11 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 11 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser13ContextChangeELb0EE5resetEv Line | Count | Source | 87 | 170 | void reset() noexcept { | 88 | 170 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 170 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser28CancellableBacktrackingScopeELb0EE5resetEv Line | Count | Source | 87 | 458 | void reset() noexcept { | 88 | 458 | if (hasVal) { | 89 | 10 | val.~T(); | 90 | 10 | hasVal = false; | 91 | 10 | } | 92 | 458 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5Lexer21ForwardSlashRegexRAIIELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreINS_8OptionalIN5swift12StableHasherEEEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17BacktrackingScopeELb0EE5resetEv Line | Count | Source | 87 | 44 | void reset() noexcept { | 88 | 44 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 44 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ClangTypeConverterELb0EE5resetEv Line | Count | Source | 87 | 20 | void reset() noexcept { | 88 | 20 | if (hasVal) { | 89 | 5 | val.~T(); | 90 | 5 | hasVal = false; | 91 | 5 | } | 92 | 20 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24UnexpectedClangTypeErrorELb0EE5resetEv Line | Count | Source | 87 | 109k | void reset() noexcept { | 88 | 109k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 109k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang17ParsedSourceRangeELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPN5swift9ValueDeclEEELb0EE5resetEv Line | Count | Source | 87 | 18.9k | void reset() noexcept { | 88 | 18.9k | if (hasVal) { | 89 | 18.3k | val.~T(); | 90 | 18.3k | hasVal = false; | 91 | 18.3k | } | 92 | 18.9k | } |
ASTPrinter.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111TypePrinterELb0EE5resetEv Line | Count | Source | 87 | 390 | void reset() noexcept { | 88 | 390 | if (hasVal) { | 89 | 58 | val.~T(); | 90 | 58 | hasVal = false; | 91 | 58 | } | 92 | 390 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S9_EEEELb0EE5resetEv Line | Count | Source | 87 | 2.21k | void reset() noexcept { | 88 | 2.21k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 2.21k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8CaseStmtEPNS4_7PatternEEELb0EE5resetEv Line | Count | Source | 87 | 6.93k | void reset() noexcept { | 88 | 6.93k | if (hasVal) { | 89 | 20 | val.~T(); | 90 | 20 | hasVal = false; | 91 | 20 | } | 92 | 6.93k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessLevelES5_EELb0EE5resetEv Line | Count | Source | 87 | 25 | void reset() noexcept { | 88 | 25 | if (hasVal) { | 89 | 19 | val.~T(); | 90 | 19 | hasVal = false; | 91 | 19 | } | 92 | 25 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EE5resetEv Line | Count | Source | 87 | 31.9k | void reset() noexcept { | 88 | 31.9k | if (hasVal) { | 89 | 31.8k | val.~T(); | 90 | 31.8k | hasVal = false; | 91 | 31.8k | } | 92 | 31.9k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EE5resetEv Line | Count | Source | 87 | 17 | void reset() noexcept { | 88 | 17 | if (hasVal) { | 89 | 17 | val.~T(); | 90 | 17 | hasVal = false; | 91 | 17 | } | 92 | 17 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10ModuleDeclENS4_10IdentifierEEELb0EE5resetEv Line | Count | Source | 87 | 1.26k | void reset() noexcept { | 88 | 1.26k | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 1.26k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift7CanTypeELj4EEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13ArchetypeTypeEPNS4_23OpaqueTypeArchetypeTypeEEELb0EE5resetEv Line | Count | Source | 87 | 59 | void reset() noexcept { | 88 | 59 | if (hasVal) { | 89 | 0 | val.~T(); | 90 | 0 | hasVal = false; | 91 | 0 | } | 92 | 59 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_16NamedRegionTimerELb0EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS2_9allocatorIS6_EEEELb0EE5resetEv _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIiNS2_9allocatorIiEEEELb0EE5resetEv Line | Count | Source | 87 | 7 | void reset() noexcept { | 88 | 7 | if (hasVal) { | 89 | 6 | val.~T(); | 90 | 6 | hasVal = false; | 91 | 6 | } | 92 | 7 | } |
|
93 | | |
94 | 449k | constexpr bool has_value() const noexcept { return hasVal; }_ZNK4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EE9has_valueEv Line | Count | Source | 94 | 4.92k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift10DiagnosticELb0EE9has_valueEv Line | Count | Source | 94 | 171 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EE9has_valueEv Line | Count | Source | 94 | 14 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_6TripleELb0EE9has_valueEv Line | Count | Source | 94 | 1.50k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EE9has_valueEv Line | Count | Source | 94 | 90.4k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang9FixItHintELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 165 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EE9has_valueEv Line | Count | Source | 94 | 28.4k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EE9has_valueEv Line | Count | Source | 94 | 33.5k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EE9has_valueEv Line | Count | Source | 94 | 4.39k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EE9has_valueEv Line | Count | Source | 94 | 79 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EE9has_valueEv Line | Count | Source | 94 | 46 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EE9has_valueEv Line | Count | Source | 94 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies18SourceFileDepGraphELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_13LazyCallGraph12EdgeSequenceELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_14WeakTrackingVHELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_17TargetLibraryInfoELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_6object12VersionEntryELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang12Preprocessor19MacroAnnotationInfoELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EE9has_valueEv Line | Count | Source | 94 | 32 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang4Sema20ImmediateDiagBuilderELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EE9has_valueEv Line | Count | Source | 94 | 33 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 224 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift18ModuleDependencyIDELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift12dependencies14BatchScanInputENS2_9allocatorIS6_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EE9has_valueEv Line | Count | Source | 94 | 177 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_3orc23JITTargetMachineBuilderELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS_3orc15SymbolStringPtrEPNS4_8JITDylibEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignatureELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignature16DirectResultTypeELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__13setINS_9StringRefENS2_4lessIS4_EENS2_9allocatorIS4_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift24FrontendInputsAndOutputsELb0EE9has_valueEv Line | Count | Source | 94 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift19OutputFilesComputerELb0EE9has_valueEv Line | Count | Source | 94 | 11 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift24SupplementaryOutputPathsENS2_9allocatorIS5_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 22 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift24SupplementaryOutputPathsELb0EE9has_valueEv Line | Count | Source | 94 | 11 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: CachingUtils.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS3_11ActionCacheENS3_9ObjectRefERNS2_16DiagnosticEngineERKNS2_24FrontendInputsAndOutputsERNS2_27CachingDiagnosticsProcessorEbE11OutputEntryLb0EE9has_valueEv DiagnosticVerifier.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EE9has_valueEv Line | Count | Source | 94 | 236 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EE9has_valueEv Line | Count | Source | 94 | 38 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrINS_12MemoryBufferENS2_14default_deleteIS4_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15AccessNotesFileELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen18AsyncContextLayoutELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18ClusteredBitVectorELb0EE9has_valueEv Line | Count | Source | 94 | 7 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EE9has_valueEv Line | Count | Source | 94 | 35 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEELb0EE9has_valueEv Line | Count | Source | 94 | 32 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen14FulfillmentMapELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_5APIntELb0EE9has_valueEv Line | Count | Source | 94 | 2.14k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen16YAMLTypeInfoNodeELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_3vfs10OutputFileELb0EE9has_valueEv Line | Count | Source | 94 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
IRGen.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SymbolSourcesToEmitELb0EE9has_valueEv Line | Count | Source | 94 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EE9has_valueEv Line | Count | Source | 94 | 316 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_6VFInfoELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_15CostBenefitPairELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_10InlineCostELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIlNS_34PreservedCFGCheckerInstrumentation7BBGuardENS_12DenseMapInfoIlvEENS_6detail12DenseMapPairIlS4_EEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EE9has_valueEv Line | Count | Source | 94 | 1.21k | constexpr bool has_value() const noexcept { return hasVal; } |
IRGenSIL.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112LoweredValueELb0EE9has_valueEv Line | Count | Source | 94 | 96 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift14CanTypeWrapperINS4_15ExistentialTypeEEEjEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__13setIaNS2_4lessIaEENS2_9allocatorIaEEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_10DataLayoutELb0EE9has_valueEv Line | Count | Source | 94 | 166 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen14YAMLModuleNodeELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18DiverseValueBufferINS2_8Lowering7CleanupEEELb0EE9has_valueEv Line | Count | Source | 94 | 301 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering5ScopeELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataELb0EE9has_valueEv SILGenApply.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16CalleeELb0EE9has_valueEv Line | Count | Source | 94 | 127 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EE9has_valueEv Line | Count | Source | 94 | 298 | constexpr bool has_value() const noexcept { return hasVal; } |
SILGenApply.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EE9has_valueEv Line | Count | Source | 94 | 555 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS2_14default_deleteIS6_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering13ArgumentScopeELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift4ExprELj2EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering27InitializeDistActorIdentityELb0EE9has_valueEv Line | Count | Source | 94 | 16 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering22FunctionInputGeneratorELb0EE9has_valueEv Line | Count | Source | 94 | 505 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EE9has_valueEv Line | Count | Source | 94 | 837 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EE9has_valueEv Line | Count | Source | 94 | 622 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EE9has_valueEv Line | Count | Source | 94 | 13.1k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EE9has_valueEv Line | Count | Source | 94 | 8.88k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EE9has_valueEv Line | Count | Source | 94 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS5_Lj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S7_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS3_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S9_EEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EE9has_valueEv Line | Count | Source | 94 | 217 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EE9has_valueEv Line | Count | Source | 94 | 27 | constexpr bool has_value() const noexcept { return hasVal; } |
DiagnoseStaticExclusivity.cpp:_ZNK4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 243 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117ConflictingAccessELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_14AutoDiffConfigEEELb0EE9has_valueEv Line | Count | Source | 94 | 9 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv PredictableMemOpt.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EE9has_valueEv Line | Count | Source | 94 | 46 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift7SILTypeEjEELb0EE9has_valueEv Line | Count | Source | 94 | 63 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv Line | Count | Source | 94 | 1.93k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv Line | Count | Source | 94 | 11.6k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15SILPrintContextELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EE9has_valueEv Line | Count | Source | 94 | 1.14k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EE9has_valueEv Line | Count | Source | 94 | 123 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS7_vEENS_6detail12DenseMapPairIS7_jEEEELb0EE9has_valueEv Line | Count | Source | 94 | 7 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEELb0EE9has_valueEv Line | Count | Source | 94 | 998 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13BasicBlockSetELb0EE9has_valueEv Line | Count | Source | 94 | 33 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11SILFunctionENS4_15SubstitutionMapEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockES6_EELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EE9has_valueEv Line | Count | Source | 94 | 2.17k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift17ReferenceMetaDataELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift6driver3Job9ConditionEbEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfoELb0EE9has_valueEv Line | Count | Source | 94 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EE9has_valueEv Line | Count | Source | 94 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyInfoELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeEjEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift24SerializedModuleBaseNameELb0EE9has_valueEv Line | Count | Source | 94 | 198 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EE9has_valueEv Line | Count | Source | 94 | 283 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_jEEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EE9has_valueEv Line | Count | Source | 94 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE9has_valueEv Line | Count | Source | 94 | 344 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_8CaseStmtEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EE9has_valueEv Line | Count | Source | 94 | 640 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints13ConstraintFixEjEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints23MatchCallArgumentResultELb0EE9has_valueEv Line | Count | Source | 94 | 1.24k | constexpr bool has_value() const noexcept { return hasVal; } |
CSSimplify.cpp:_ZNK4llvm15optional_detail15OptionalStorageINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS4_16TypeVariableTypeENS4_4TypeENS4_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEELb0EE9has_valueEv Line | Count | Source | 94 | 1.09k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintEjEELb0EE9has_valueEv Line | Count | Source | 94 | 68 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_18ConjunctionElementEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS5_11constraints17ConstraintLocatorEEEEjEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17DisjunctionChoiceELb0EE9has_valueEv Line | Count | Source | 94 | 630 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EE9has_valueEv Line | Count | Source | 94 | 886 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_19TypeVariableBindingEEELb0EE9has_valueEv Line | Count | Source | 94 | 81 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_17DisjunctionChoiceEEELb0EE9has_valueEv Line | Count | Source | 94 | 31 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintENS5_5ScoreEEELb0EE9has_valueEv Line | Count | Source | 94 | 1.09k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints15ConjunctionStep14SolverSnapshotELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__15tupleIJN5swift21ContextualTypePurposeENS4_4TypeES6_EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_12ArgumentListEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference17PotentialBindingsELb0EE9has_valueEv Line | Count | Source | 94 | 9.04k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EE9has_valueEv Line | Count | Source | 94 | 110 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclENS4_4TypeEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift4ExprEEELb0EE9has_valueEv Line | Count | Source | 94 | 15 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EE9has_valueEv Line | Count | Source | 94 | 3.98k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EE9has_valueEv Line | Count | Source | 94 | 1.15k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EE9has_valueEv Line | Count | Source | 94 | 2.08k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift20GenericTypeParamTypeENS4_15RequirementKindEEELb0EE9has_valueEv Line | Count | Source | 94 | 2.89k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift20GenericTypeParamTypeEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift15ConcreteDeclRefENS4_9SourceLocEEELb0EE9has_valueEv Line | Count | Source | 94 | 54 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EE9has_valueEv Line | Count | Source | 94 | 44 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeES5_EELb0EE9has_valueEv Line | Count | Source | 94 | 726 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift11SourceRangeEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EE9has_valueEv Line | Count | Source | 94 | 86 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift11constraints8SolutionENS2_9allocatorIS6_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 113 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EE9has_valueEv Line | Count | Source | 94 | 5.16k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EE9has_valueEv Line | Count | Source | 94 | 166 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18ConformanceCheckerELb0EE9has_valueEv Line | Count | Source | 94 | 143 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints8SolutionELb0EE9has_valueEv Line | Count | Source | 94 | 1.80k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 348 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EE9has_valueEv TypeCheckSwitchStmt.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EE9has_valueEv Line | Count | Source | 94 | 140 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallStringILj128EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang12CXXScopeSpecELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS_6APSIntEN5swift4TypeEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EE9has_valueEv Line | Count | Source | 94 | 2.00k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticTransactionELb0EE9has_valueEv Line | Count | Source | 94 | 17 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift6Parser13ContextChangeELb0EE9has_valueEv Line | Count | Source | 94 | 199 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift5TokenENS2_9allocatorIS5_EEEELb0EE9has_valueEv Line | Count | Source | 94 | 17 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift6Parser17BacktrackingScopeELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift6Parser28CancellableBacktrackingScopeELb0EE9has_valueEv Line | Count | Source | 94 | 215 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift24UnexpectedClangTypeErrorELb0EE9has_valueEv Line | Count | Source | 94 | 109k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18ClangTypeConverterELb0EE9has_valueEv Line | Count | Source | 94 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5clang26dependency_directives_scan9DirectiveELj20EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S9_EEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EE9has_valueEv Line | Count | Source | 94 | 1.03k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8TypeReprEjEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EE9has_valueEv Line | Count | Source | 94 | 2.36k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18ExternalSourceLocs7RawLocsELb0EE9has_valueEv Line | Count | Source | 94 | 31 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPN5swift9ValueDeclEEELb0EE9has_valueEv Line | Count | Source | 94 | 18.9k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8CaseStmtEPNS4_7PatternEEELb0EE9has_valueEv Line | Count | Source | 94 | 6.93k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EE9has_valueEv Line | Count | Source | 94 | 29.7k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessLevelES5_EELb0EE9has_valueEv Line | Count | Source | 94 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EE9has_valueEv Line | Count | Source | 94 | 31.9k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10ModuleDeclENS4_10IdentifierEEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift7CanTypeELj4EEELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8DenseMapIN5swift10IdentifierENS3_12PluginLoader11PluginEntryENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13ArchetypeTypeEPNS4_23OpaqueTypeArchetypeTypeEEELb0EE9has_valueEv Line | Count | Source | 94 | 59 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS2_9allocatorIS6_EEEELb0EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINSt3__16vectorIiNS2_9allocatorIiEEEELb0EE9has_valueEv Line | Count | Source | 94 | 7 | constexpr bool has_value() const noexcept { return hasVal; } |
|
95 | | LLVM_DEPRECATED("Use has_value instead.", "has_value") |
96 | | constexpr bool hasValue() const noexcept { |
97 | | return hasVal; |
98 | | } |
99 | | |
100 | 202k | T &value() &noexcept { |
101 | 202k | assert(hasVal); |
102 | 0 | return val; |
103 | 202k | } _ZNR4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EE5valueEv Line | Count | Source | 100 | 280 | T &value() &noexcept { | 101 | 280 | assert(hasVal); | 102 | 0 | return val; | 103 | 280 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift10DiagnosticELb0EE5valueEv Line | Count | Source | 100 | 124 | T &value() &noexcept { | 101 | 124 | assert(hasVal); | 102 | 0 | return val; | 103 | 124 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EE5valueEv Line | Count | Source | 100 | 1.05k | T &value() &noexcept { | 101 | 1.05k | assert(hasVal); | 102 | 0 | return val; | 103 | 1.05k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EE5valueEv Line | Count | Source | 100 | 16.9k | T &value() &noexcept { | 101 | 16.9k | assert(hasVal); | 102 | 0 | return val; | 103 | 16.9k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EE5valueEv Line | Count | Source | 100 | 12.6k | T &value() &noexcept { | 101 | 12.6k | assert(hasVal); | 102 | 0 | return val; | 103 | 12.6k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EE5valueEv Line | Count | Source | 100 | 341 | T &value() &noexcept { | 101 | 341 | assert(hasVal); | 102 | 0 | return val; | 103 | 341 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EE5valueEv Line | Count | Source | 100 | 18 | T &value() &noexcept { | 101 | 18 | assert(hasVal); | 102 | 0 | return val; | 103 | 18 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies18SourceFileDepGraphELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_17TargetLibraryInfoELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_13BasicAAResultELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_9AAResultsELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_13LazyCallGraph12EdgeSequenceELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EE5valueEv Line | Count | Source | 100 | 175 | T &value() &noexcept { | 101 | 175 | assert(hasVal); | 102 | 0 | return val; | 103 | 175 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EE5valueEv Line | Count | Source | 100 | 271 | T &value() &noexcept { | 101 | 271 | assert(hasVal); | 102 | 0 | return val; | 103 | 271 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ModuleDependencyIDELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies25DependencyScanningServiceELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift12dependencies14BatchScanInputENS2_9allocatorIS6_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairINS_3orc15SymbolStringPtrEPNS4_8JITDylibEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignatureELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift24LoweredFunctionSignature16DirectResultTypeELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__13setINS_9StringRefENS2_4lessIS4_EENS2_9allocatorIS4_EEEELb0EE5valueEv Line | Count | Source | 100 | 13 | T &value() &noexcept { | 101 | 13 | assert(hasVal); | 102 | 0 | return val; | 103 | 13 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift24FrontendInputsAndOutputsELb0EE5valueEv Line | Count | Source | 100 | 13 | T &value() &noexcept { | 101 | 13 | assert(hasVal); | 102 | 0 | return val; | 103 | 13 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift19OutputFilesComputerELb0EE5valueEv Line | Count | Source | 100 | 11 | T &value() &noexcept { | 101 | 11 | assert(hasVal); | 102 | 0 | return val; | 103 | 11 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift24SupplementaryOutputPathsENS2_9allocatorIS5_EEEELb0EE5valueEv Line | Count | Source | 100 | 34 | T &value() &noexcept { | 101 | 34 | assert(hasVal); | 102 | 0 | return val; | 103 | 34 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift24SupplementaryOutputPathsELb0EE5valueEv Line | Count | Source | 100 | 11 | T &value() &noexcept { | 101 | 11 | assert(hasVal); | 102 | 0 | return val; | 103 | 11 | } |
Unexecuted instantiation: CachingUtils.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS3_11ActionCacheENS3_9ObjectRefERNS2_16DiagnosticEngineERKNS2_24FrontendInputsAndOutputsERNS2_27CachingDiagnosticsProcessorEbE11OutputEntryLb0EE5valueEv Unexecuted instantiation: DiagnosticVerifier.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EE5valueEv Line | Count | Source | 100 | 74 | T &value() &noexcept { | 101 | 74 | assert(hasVal); | 102 | 0 | return val; | 103 | 74 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrINS_12MemoryBufferENS2_14default_deleteIS4_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15AccessNotesFileELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16DiagnosticEngineELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_6TripleELb0EE5valueEv Line | Count | Source | 100 | 908 | T &value() &noexcept { | 101 | 908 | assert(hasVal); | 102 | 0 | return val; | 103 | 908 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen22NativeConventionSchemaELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen19ConstantInitBuilderELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ClusteredBitVectorELb0EE5valueEv Line | Count | Source | 100 | 7 | T &value() &noexcept { | 101 | 7 | assert(hasVal); | 102 | 0 | return val; | 103 | 7 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen18AsyncContextLayoutELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EE5valueEv GenMeta.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_129GenericSignatureHeaderBuilderELb0EE5valueEv Line | Count | Source | 100 | 6 | T &value() &noexcept { | 101 | 6 | assert(hasVal); | 102 | 0 | return val; | 103 | 6 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen14FulfillmentMapELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_5APIntELb0EE5valueEv Line | Count | Source | 100 | 53 | T &value() &noexcept { | 101 | 53 | assert(hasVal); | 102 | 0 | return val; | 103 | 53 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen16YAMLTypeInfoNodeELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_3vfs10OutputFileELb0EE5valueEv Line | Count | Source | 100 | 6 | T &value() &noexcept { | 101 | 6 | assert(hasVal); | 102 | 0 | return val; | 103 | 6 | } |
Unexecuted instantiation: IRGen.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SymbolSourcesToEmitELb0EE5valueEv Unexecuted instantiation: IRGenSIL.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112LoweredValueELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__13setIaNS2_4lessIaEENS2_9allocatorIaEEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_10DataLayoutELb0EE5valueEv Line | Count | Source | 100 | 163 | T &value() &noexcept { | 101 | 163 | assert(hasVal); | 102 | 0 | return val; | 103 | 163 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen14YAMLModuleNodeELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift18DiverseValueBufferINS2_8Lowering7CleanupEEELb0EE5valueEv Line | Count | Source | 100 | 153 | T &value() &noexcept { | 101 | 153 | assert(hasVal); | 102 | 0 | return val; | 103 | 153 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering24ConvertingInitializationELb0EE5valueEv SILGenApply.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EE5valueEv Line | Count | Source | 100 | 498 | T &value() &noexcept { | 101 | 498 | assert(hasVal); | 102 | 0 | return val; | 103 | 498 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS2_14default_deleteIS6_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering13ArgumentScopeELb0EE5valueEv SILGenApply.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16CalleeELb0EE5valueEv Line | Count | Source | 100 | 127 | T &value() &noexcept { | 101 | 127 | assert(hasVal); | 102 | 0 | return val; | 103 | 127 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8Lowering12ManagedValueES6_EELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift4ExprELj2EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering6RValueELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering27InitializeDistActorIdentityELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EE5valueEv SILGenPoly.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113ResultPlannerELb0EE5valueEv Line | Count | Source | 100 | 50 | T &value() &noexcept { | 101 | 50 | assert(hasVal); | 102 | 0 | return val; | 103 | 50 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering22FunctionInputGeneratorELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EE5valueEv Line | Count | Source | 100 | 1.07k | T &value() &noexcept { | 101 | 1.07k | assert(hasVal); | 102 | 0 | return val; | 103 | 1.07k | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EE5valueEv Line | Count | Source | 100 | 1.14k | T &value() &noexcept { | 101 | 1.14k | assert(hasVal); | 102 | 0 | return val; | 103 | 1.14k | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EE5valueEv Line | Count | Source | 100 | 18.3k | T &value() &noexcept { | 101 | 18.3k | assert(hasVal); | 102 | 0 | return val; | 103 | 18.3k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EE5valueEv Line | Count | Source | 100 | 10.0k | T &value() &noexcept { | 101 | 10.0k | assert(hasVal); | 102 | 0 | return val; | 103 | 10.0k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EE5valueEv Line | Count | Source | 100 | 8 | T &value() &noexcept { | 101 | 8 | assert(hasVal); | 102 | 0 | return val; | 103 | 8 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS3_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S9_EEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EE5valueEv Line | Count | Source | 100 | 43 | T &value() &noexcept { | 101 | 43 | assert(hasVal); | 102 | 0 | return val; | 103 | 43 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EE5valueEv Line | Count | Source | 100 | 9 | T &value() &noexcept { | 101 | 9 | assert(hasVal); | 102 | 0 | return val; | 103 | 9 | } |
DiagnoseStaticExclusivity.cpp:_ZNR4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE5valueEv Line | Count | Source | 100 | 149 | T &value() &noexcept { | 101 | 149 | assert(hasVal); | 102 | 0 | return val; | 103 | 149 | } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117ConflictingAccessELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_14AutoDiffConfigEEELb0EE5valueEv Line | Count | Source | 100 | 16 | T &value() &noexcept { | 101 | 16 | assert(hasVal); | 102 | 0 | return val; | 103 | 16 | } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEELb0EE5valueEv Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119AvailableValueStoreELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_8SILValueEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EE5valueEv PredictableMemOpt.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EE5valueEv Line | Count | Source | 100 | 46 | T &value() &noexcept { | 101 | 46 | assert(hasVal); | 102 | 0 | return val; | 103 | 46 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift7SILTypeEjEELb0EE5valueEv Line | Count | Source | 100 | 88 | T &value() &noexcept { | 101 | 88 | assert(hasVal); | 102 | 0 | return val; | 103 | 88 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS5_Lj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S7_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21ValueLifetimeAnalysisELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15SILPrintContextELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EE5valueEv Line | Count | Source | 100 | 480 | T &value() &noexcept { | 101 | 480 | assert(hasVal); | 102 | 0 | return val; | 103 | 480 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EE5valueEv Line | Count | Source | 100 | 91 | T &value() &noexcept { | 101 | 91 | assert(hasVal); | 102 | 0 | return val; | 103 | 91 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS7_vEENS_6detail12DenseMapPairIS7_jEEEELb0EE5valueEv Line | Count | Source | 100 | 13 | T &value() &noexcept { | 101 | 13 | assert(hasVal); | 102 | 0 | return val; | 103 | 13 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEELb0EE5valueEv Line | Count | Source | 100 | 1.00k | T &value() &noexcept { | 101 | 1.00k | assert(hasVal); | 102 | 0 | return val; | 103 | 1.00k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift13BasicBlockSetELb0EE5valueEv Line | Count | Source | 100 | 5 | T &value() &noexcept { | 101 | 5 | assert(hasVal); | 102 | 0 | return val; | 103 | 5 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11SILFunctionENS4_15SubstitutionMapEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockES6_EELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EE5valueEv Line | Count | Source | 100 | 4.53k | T &value() &noexcept { | 101 | 4.53k | assert(hasVal); | 102 | 0 | return val; | 103 | 4.53k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift17ReferenceMetaDataELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift6driver3Job9ConditionEbEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfoELb0EE5valueEv Line | Count | Source | 100 | 2 | T &value() &noexcept { | 101 | 2 | assert(hasVal); | 102 | 0 | return val; | 103 | 2 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyInfoELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeEjEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift24SerializedModuleBaseNameELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EE5valueEv Line | Count | Source | 100 | 19 | T &value() &noexcept { | 101 | 19 | assert(hasVal); | 102 | 0 | return val; | 103 | 19 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_jEEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EE5valueEv Line | Count | Source | 100 | 60 | T &value() &noexcept { | 101 | 60 | assert(hasVal); | 102 | 0 | return val; | 103 | 60 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_8CaseStmtEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints13ConstraintFixEjEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EE5valueEv Line | Count | Source | 100 | 17 | T &value() &noexcept { | 101 | 17 | assert(hasVal); | 102 | 0 | return val; | 103 | 17 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints23MatchCallArgumentResultELb0EE5valueEv Line | Count | Source | 100 | 2.30k | T &value() &noexcept { | 101 | 2.30k | assert(hasVal); | 102 | 0 | return val; | 103 | 2.30k | } |
Unexecuted instantiation: CSSimplify.cpp:_ZNR4llvm15optional_detail15OptionalStorageINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS4_16TypeVariableTypeENS4_4TypeENS4_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintEjEELb0EE5valueEv Line | Count | Source | 100 | 54 | T &value() &noexcept { | 101 | 54 | assert(hasVal); | 102 | 0 | return val; | 103 | 54 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS5_11constraints17ConstraintLocatorEEEEjEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17DisjunctionChoiceELb0EE5valueEv Line | Count | Source | 100 | 2.19k | T &value() &noexcept { | 101 | 2.19k | assert(hasVal); | 102 | 0 | return val; | 103 | 2.19k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EE5valueEv Line | Count | Source | 100 | 117 | T &value() &noexcept { | 101 | 117 | assert(hasVal); | 102 | 0 | return val; | 103 | 117 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_19TypeVariableBindingEEELb0EE5valueEv Line | Count | Source | 100 | 81 | T &value() &noexcept { | 101 | 81 | assert(hasVal); | 102 | 0 | return val; | 103 | 81 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_17DisjunctionChoiceEEELb0EE5valueEv Line | Count | Source | 100 | 29 | T &value() &noexcept { | 101 | 29 | assert(hasVal); | 102 | 0 | return val; | 103 | 29 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints15ConjunctionStep14SolverSnapshotELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__15tupleIJN5swift21ContextualTypePurposeENS4_4TypeES6_EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift4ExprEPNS4_12ArgumentListEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference17PotentialBindingsELb0EE5valueEv Line | Count | Source | 100 | 9.04k | T &value() &noexcept { | 101 | 9.04k | assert(hasVal); | 102 | 0 | return val; | 103 | 9.04k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclENS4_4TypeEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift4ExprEEELb0EE5valueEv Line | Count | Source | 100 | 15 | T &value() &noexcept { | 101 | 15 | assert(hasVal); | 102 | 0 | return val; | 103 | 15 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EE5valueEv Line | Count | Source | 100 | 614 | T &value() &noexcept { | 101 | 614 | assert(hasVal); | 102 | 0 | return val; | 103 | 614 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EE5valueEv Line | Count | Source | 100 | 2.09k | T &value() &noexcept { | 101 | 2.09k | assert(hasVal); | 102 | 0 | return val; | 103 | 2.09k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EE5valueEv Line | Count | Source | 100 | 110 | T &value() &noexcept { | 101 | 110 | assert(hasVal); | 102 | 0 | return val; | 103 | 110 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift20GenericTypeParamTypeENS4_15RequirementKindEEELb0EE5valueEv Line | Count | Source | 100 | 576 | T &value() &noexcept { | 101 | 576 | assert(hasVal); | 102 | 0 | return val; | 103 | 576 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift20GenericTypeParamTypeEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift15ConcreteDeclRefENS4_9SourceLocEEELb0EE5valueEv Line | Count | Source | 100 | 162 | T &value() &noexcept { | 101 | 162 | assert(hasVal); | 102 | 0 | return val; | 103 | 162 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift4TypeES5_EELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift11SourceRangeEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift11constraints8SolutionENS2_9allocatorIS6_EEEELb0EE5valueEv Line | Count | Source | 100 | 113 | T &value() &noexcept { | 101 | 113 | assert(hasVal); | 102 | 0 | return val; | 103 | 113 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift18ConformanceCheckerELb0EE5valueEv Line | Count | Source | 100 | 22 | T &value() &noexcept { | 101 | 22 | assert(hasVal); | 102 | 0 | return val; | 103 | 22 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EE5valueEv Line | Count | Source | 100 | 106 | T &value() &noexcept { | 101 | 106 | assert(hasVal); | 102 | 0 | return val; | 103 | 106 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EE5valueEv Line | Count | Source | 100 | 426 | T &value() &noexcept { | 101 | 426 | assert(hasVal); | 102 | 0 | return val; | 103 | 426 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystemELb0EE5valueEv Line | Count | Source | 100 | 9.55k | T &value() &noexcept { | 101 | 9.55k | assert(hasVal); | 102 | 0 | return val; | 103 | 9.55k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints8SolutionELb0EE5valueEv Line | Count | Source | 100 | 1.63k | T &value() &noexcept { | 101 | 1.63k | assert(hasVal); | 102 | 0 | return val; | 103 | 1.63k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EE5valueEv Line | Count | Source | 100 | 174 | T &value() &noexcept { | 101 | 174 | assert(hasVal); | 102 | 0 | return val; | 103 | 174 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EE5valueEv TypeCheckSwitchStmt.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111SpaceEngine5SpaceELb0EE5valueEv Line | Count | Source | 100 | 233 | T &value() &noexcept { | 101 | 233 | assert(hasVal); | 102 | 0 | return val; | 103 | 233 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallStringILj128EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang12CXXScopeSpecELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairINS_6APSIntEN5swift4TypeEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EE5valueEv Line | Count | Source | 100 | 37 | T &value() &noexcept { | 101 | 37 | assert(hasVal); | 102 | 0 | return val; | 103 | 37 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticTransactionELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift6Parser28CancellableBacktrackingScopeELb0EE5valueEv Line | Count | Source | 100 | 10 | T &value() &noexcept { | 101 | 10 | assert(hasVal); | 102 | 0 | return val; | 103 | 10 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift5TokenENS2_9allocatorIS5_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift24UnexpectedClangTypeErrorELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ClangTypeConverterELb0EE5valueEv Line | Count | Source | 100 | 13 | T &value() &noexcept { | 101 | 13 | assert(hasVal); | 102 | 0 | return val; | 103 | 13 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S9_EEEELb0EE5valueEv ASTPrinter.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111TypePrinterELb0EE5valueEv Line | Count | Source | 100 | 58 | T &value() &noexcept { | 101 | 58 | assert(hasVal); | 102 | 0 | return val; | 103 | 58 | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EE5valueEv Line | Count | Source | 100 | 856 | T &value() &noexcept { | 101 | 856 | assert(hasVal); | 102 | 0 | return val; | 103 | 856 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8TypeReprEjEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ExternalSourceLocs7RawLocsELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessLevelES5_EELb0EE5valueEv Line | Count | Source | 100 | 26 | T &value() &noexcept { | 101 | 26 | assert(hasVal); | 102 | 0 | return val; | 103 | 26 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPN5swift9ValueDeclEEELb0EE5valueEv Line | Count | Source | 100 | 36.6k | T &value() &noexcept { | 101 | 36.6k | assert(hasVal); | 102 | 0 | return val; | 103 | 36.6k | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift8CaseStmtEPNS4_7PatternEEELb0EE5valueEv Line | Count | Source | 100 | 20 | T &value() &noexcept { | 101 | 20 | assert(hasVal); | 102 | 0 | return val; | 103 | 20 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift18BodyAndFingerprintELb0EE5valueEv Line | Count | Source | 100 | 63.7k | T &value() &noexcept { | 101 | 63.7k | assert(hasVal); | 102 | 0 | return val; | 103 | 63.7k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10ModuleDeclENS4_10IdentifierEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift7CanTypeELj4EEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8DenseMapIN5swift10IdentifierENS3_12PluginLoader11PluginEntryENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13ArchetypeTypeEPNS4_23OpaqueTypeArchetypeTypeEEELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS2_9allocatorIS6_EEEELb0EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINSt3__16vectorIiNS2_9allocatorIiEEEELb0EE5valueEv Line | Count | Source | 100 | 6 | T &value() &noexcept { | 101 | 6 | assert(hasVal); | 102 | 0 | return val; | 103 | 6 | } |
|
104 | | LLVM_DEPRECATED("Use value instead.", "value") T &getValue() &noexcept { |
105 | | assert(hasVal); |
106 | | return val; |
107 | | } |
108 | 2.51k | constexpr T const &value() const &noexcept { |
109 | 2.51k | assert(hasVal); |
110 | 0 | return val; |
111 | 2.51k | } Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_6TripleELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang9FixItHintELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EE5valueEv Line | Count | Source | 108 | 114 | constexpr T const &value() const &noexcept { | 109 | 114 | assert(hasVal); | 110 | 0 | return val; | 111 | 114 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EE5valueEv Line | Count | Source | 108 | 1.07k | constexpr T const &value() const &noexcept { | 109 | 1.07k | assert(hasVal); | 110 | 0 | return val; | 111 | 1.07k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S6_EEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_13LazyCallGraph12EdgeSequenceELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang4Sema20ImmediateDiagBuilderELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EE5valueEv Line | Count | Source | 108 | 1 | constexpr T const &value() const &noexcept { | 109 | 1 | assert(hasVal); | 110 | 0 | return val; | 111 | 1 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift5irgen22NativeConventionSchemaELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EE5valueEv Line | Count | Source | 108 | 25 | constexpr T const &value() const &noexcept { | 109 | 25 | assert(hasVal); | 110 | 0 | return val; | 111 | 25 | } |
_ZNKR4llvm15optional_detail15OptionalStorageINS_5APIntELb0EE5valueEv Line | Count | Source | 108 | 661 | constexpr T const &value() const &noexcept { | 109 | 661 | assert(hasVal); | 110 | 0 | return val; | 111 | 661 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_6VFInfoELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_8DenseMapIlNS_34PreservedCFGCheckerInstrumentation7BBGuardENS_12DenseMapInfoIlvEENS_6detail12DenseMapPairIlS4_EEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EE5valueEv Line | Count | Source | 108 | 4 | constexpr T const &value() const &noexcept { | 109 | 4 | assert(hasVal); | 110 | 0 | return val; | 111 | 4 | } |
_ZNKR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EE5valueEv Line | Count | Source | 108 | 27 | constexpr T const &value() const &noexcept { | 109 | 27 | assert(hasVal); | 110 | 0 | return val; | 111 | 27 | } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIbbEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift13OutputFileMapELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE5valueEv Line | Count | Source | 108 | 18 | constexpr T const &value() const &noexcept { | 109 | 18 | assert(hasVal); | 110 | 0 | return val; | 111 | 18 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintENS5_5ScoreEEELb0EE5valueEv Line | Count | Source | 108 | 584 | constexpr T const &value() const &noexcept { | 109 | 584 | assert(hasVal); | 110 | 0 | return val; | 111 | 584 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5clang26dependency_directives_scan9DirectiveELj20EEELb0EE5valueEv |
112 | | LLVM_DEPRECATED("Use value instead.", "value") |
113 | | constexpr T const &getValue() const &noexcept { |
114 | | assert(hasVal); |
115 | | return val; |
116 | | } |
117 | | T &&value() &&noexcept { |
118 | | assert(hasVal); |
119 | | return std::move(val); |
120 | | } |
121 | | LLVM_DEPRECATED("Use value instead.", "value") T &&getValue() &&noexcept { |
122 | | assert(hasVal); |
123 | | return std::move(val); |
124 | | } |
125 | | |
126 | 32.8k | template <class... Args> void emplace(Args &&...args) { |
127 | 32.8k | reset(); |
128 | 32.8k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); |
129 | 32.8k | hasVal = true; |
130 | 32.8k | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3sys22TaskProcessInformation13ResourceUsageELb0EE7emplaceIJRKS5_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EE7emplaceIJRKS3_EEEvDpOT_ Line | Count | Source | 126 | 2.46k | template <class... Args> void emplace(Args &&...args) { | 127 | 2.46k | reset(); | 128 | 2.46k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 2.46k | hasVal = true; | 130 | 2.46k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_9allocatorIS8_EEEELb0EE7emplaceIJSB_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16FixedOperandListILj1EEELb0EE7emplaceIJPNS2_8EnumInstERNS2_8SILValueEEEEvDpOT_ Line | Count | Source | 126 | 16 | template <class... Args> void emplace(Args &&...args) { | 127 | 16 | reset(); | 128 | 16 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 16 | hasVal = true; | 130 | 16 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 126 | 316 | template <class... Args> void emplace(Args &&...args) { | 127 | 316 | reset(); | 128 | 316 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 316 | hasVal = true; | 130 | 316 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EE7emplaceIJRKS3_EEEvDpOT_ Line | Count | Source | 126 | 179 | template <class... Args> void emplace(Args &&...args) { | 127 | 179 | reset(); | 128 | 179 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 179 | hasVal = true; | 130 | 179 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EE7emplaceIJRKS6_EEEvDpOT_ Line | Count | Source | 126 | 16 | template <class... Args> void emplace(Args &&...args) { | 127 | 16 | reset(); | 128 | 16 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 16 | hasVal = true; | 130 | 16 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EE7emplaceIJRKSA_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEELj1EEELb0EE7emplaceIJSA_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14WeakTrackingVHELb0EE7emplaceIJS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13BasicAAResultELb0EE7emplaceIJS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_9AAResultsELb0EE7emplaceIJS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12Preprocessor19MacroAnnotationInfoELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang4Sema20ImmediateDiagBuilderELb0EE7emplaceIJRKS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EE7emplaceIJRKSA_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift37BufferIndirectlyCausingDiagnosticRAIIELb0EE7emplaceIJRNS2_10SourceFileEEEEvDpOT_ Line | Count | Source | 126 | 2 | template <class... Args> void emplace(Args &&...args) { | 127 | 2 | reset(); | 128 | 2 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 2 | hasVal = true; | 130 | 2 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28PrettyStackTraceFileContentsELb0EE7emplaceIJRNS_12MemoryBufferEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift17FunctionParameterENS2_9allocatorIS5_EEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EE7emplaceIJRKS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EE7emplaceIJRKSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EE7emplaceIJS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EE7emplaceIJSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EE7emplaceIJRKS9_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EE7emplaceIJS9_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EE7emplaceIJRKS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EE7emplaceIJRKS4_EEEvDpOT_ Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EE7emplaceIJRKS4_EEEvDpOT_ Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EE7emplaceIJRPKcS9_RNS_11SmallVectorINS_9StringRefELj1EEEEEEvDpOT_ Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EE7emplaceIJRKS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16DiagnosticEngineELb0EE7emplaceIJRNS2_13SourceManagerEEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EE7emplaceIJRKS4_EEEvDpOT_ Line | Count | Source | 126 | 1 | template <class... Args> void emplace(Args &&...args) { | 127 | 1 | reset(); | 128 | 1 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1 | hasVal = true; | 130 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EE7emplaceIJRKS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EE7emplaceIJS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift15CustomAttrValueELj2EEELb0EE7emplaceIJS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EE7emplaceIJS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20EnumElementDeclValueENS2_9allocatorIS5_EEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift25EnumElementParameterValueENS2_9allocatorIS5_EEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen22NativeConventionSchemaELb0EE7emplaceIJRNS3_11IRGenModuleEPKNS3_8TypeInfoEbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeELb0EE7emplaceIJRS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen19ConstantInitBuilderELb0EE7emplaceIJRNS3_11IRGenModuleEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen18AsyncContextLayoutELb0EE7emplaceIJS4_EEEvDpOT_ GenMeta.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_129GenericSignatureHeaderBuilderELb0EE7emplaceIJRN5swift5irgen11IRGenModuleERNS7_21ConstantStructBuilderEEEEvDpOT_ Line | Count | Source | 126 | 1 | template <class... Args> void emplace(Args &&...args) { | 127 | 1 | reset(); | 128 | 1 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1 | hasVal = true; | 130 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_129GenericSignatureHeaderBuilderELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14FulfillmentMapELb0EE7emplaceIJEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EE7emplaceIJS2_EEEvDpOT_ Line | Count | Source | 126 | 216 | template <class... Args> void emplace(Args &&...args) { | 127 | 216 | reset(); | 128 | 216 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 216 | hasVal = true; | 130 | 216 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EE7emplaceIJRKS2_EEEvDpOT_ Line | Count | Source | 126 | 376 | template <class... Args> void emplace(Args &&...args) { | 127 | 376 | reset(); | 128 | 376 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 376 | hasVal = true; | 130 | 376 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EE7emplaceIJRKS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EE7emplaceIJRKS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EE7emplaceIJRKS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15CostBenefitPairELb0EE7emplaceIJRKS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_10InlineCostELb0EE7emplaceIJRKS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EE7emplaceIJRKS4_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift18DiverseValueBufferINS2_8Lowering7CleanupEEELb0EE7emplaceIJRS5_EEEvDpOT_ Line | Count | Source | 126 | 153 | template <class... Args> void emplace(Args &&...args) { | 127 | 153 | reset(); | 128 | 153 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 153 | hasVal = true; | 130 | 153 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering5ScopeELb0EE7emplaceIJRNS3_14CleanupManagerENS2_15CleanupLocationEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift12SymbolSourceELj1EEELb0EE7emplaceIJS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering24ConvertingInitializationELb0EE7emplaceIJNS3_10ConversionENS3_10SGFContextEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EE7emplaceIJS6_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS2_14default_deleteIS6_EEEELb0EE7emplaceIJS9_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13ArgumentScopeELb0EE7emplaceIJRNS3_14SILGenFunctionERNS2_11SILLocationEEEEvDpOT_ SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16CalleeELb0EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 126 | 69 | template <class... Args> void emplace(Args &&...args) { | 127 | 69 | reset(); | 128 | 69 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 69 | hasVal = true; | 130 | 69 | } |
Unexecuted instantiation: SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataELb0EE7emplaceIJRPNS2_13SILBasicBlockERNS3_20SwitchCaseBranchDestERNSt3__18functionIFvNS3_12ManagedValueEONS3_18SwitchCaseFullExprEEEERNS4_19DefaultDispatchTimeERNS2_14ProfileCounterEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering21FormalEvaluationScopeELb0EE7emplaceIJRNS3_14SILGenFunctionEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6RValueELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering6LValueELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14SILGenFunction15OpaqueValueRAIIELb0EE7emplaceIJRS4_PNS2_15OpaqueValueExprENS3_12ManagedValueEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EE7emplaceIJRNS2_8SILValueERNS2_16DiverseStackBase15stable_iteratorEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering23TemporaryInitializationELb0EE7emplaceIJRNS2_8SILValueENS2_16DiverseStackBase15stable_iteratorEEEEvDpOT_ SILGenPoly.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113ResultPlannerELb0EE7emplaceIJRN5swift8Lowering14SILGenFunctionERNS6_11SILLocationERNS_11SmallVectorINS7_12ManagedValueELj8EEERNSC_INS6_8SILValueELj8EEEEEEvDpOT_ Line | Count | Source | 126 | 25 | template <class... Args> void emplace(Args &&...args) { | 127 | 25 | reset(); | 128 | 25 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 25 | hasVal = true; | 130 | 25 | } |
Unexecuted instantiation: SILGenProlog.cpp:_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering22FunctionInputGeneratorELb0EE7emplaceIJRNS2_10ASTContextERN12_GLOBAL__N_121LoweredParamGeneratorERNS3_18AbstractionPatternENS_8ArrayRefINS2_15AnyFunctionType5ParamEEEbEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EE7emplaceIJS7_EEEvDpOT_ Line | Count | Source | 126 | 490 | template <class... Args> void emplace(Args &&...args) { | 127 | 490 | reset(); | 128 | 490 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 490 | hasVal = true; | 130 | 490 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EE7emplaceIJRKS7_EEEvDpOT_ Line | Count | Source | 126 | 1.72k | template <class... Args> void emplace(Args &&...args) { | 127 | 1.72k | reset(); | 128 | 1.72k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1.72k | hasVal = true; | 130 | 1.72k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EE7emplaceIJS7_EEEvDpOT_ Line | Count | Source | 126 | 506 | template <class... Args> void emplace(Args &&...args) { | 127 | 506 | reset(); | 128 | 506 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 506 | hasVal = true; | 130 | 506 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EE7emplaceIJRKS7_EEEvDpOT_ Line | Count | Source | 126 | 3.45k | template <class... Args> void emplace(Args &&...args) { | 127 | 3.45k | reset(); | 128 | 3.45k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 3.45k | hasVal = true; | 130 | 3.45k | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Line | Count | Source | 126 | 119 | template <class... Args> void emplace(Args &&...args) { | 127 | 119 | reset(); | 128 | 119 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 119 | hasVal = true; | 130 | 119 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EE7emplaceIJRKS8_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EE7emplaceIJS8_EEEvDpOT_ Line | Count | Source | 126 | 254 | template <class... Args> void emplace(Args &&...args) { | 127 | 254 | reset(); | 128 | 254 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 254 | hasVal = true; | 130 | 254 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EE7emplaceIJS8_EEEvDpOT_ Line | Count | Source | 126 | 230 | template <class... Args> void emplace(Args &&...args) { | 127 | 230 | reset(); | 128 | 230 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 230 | hasVal = true; | 130 | 230 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS5_Lj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S7_EEEELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS3_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S9_EEEELb0EE7emplaceIJEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EE7emplaceIJRKS7_EEEvDpOT_ Line | Count | Source | 126 | 13 | template <class... Args> void emplace(Args &&...args) { | 127 | 13 | reset(); | 128 | 13 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 13 | hasVal = true; | 130 | 13 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEELb0EE7emplaceIJEEEvDpOT_ Line | Count | Source | 126 | 9 | template <class... Args> void emplace(Args &&...args) { | 127 | 9 | reset(); | 128 | 9 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 9 | hasVal = true; | 130 | 9 | } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE7emplaceIJSC_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSL_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSL_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EE7emplaceIJS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EE7emplaceIJS9_EEEvDpOT_ Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119AvailableValueStoreELb0EE7emplaceIJRN5swift32FieldSensitiveSSAPrunedLiveRangeEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSM_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSM_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSL_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSL_EEEvDpOT_ PredictableMemOpt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EE7emplaceIJN5swift8SILValueERjRPNS6_9StoreInstEEEEvDpOT_ Line | Count | Source | 126 | 46 | template <class... Args> void emplace(Args &&...args) { | 127 | 46 | reset(); | 128 | 46 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 46 | hasVal = true; | 130 | 46 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSK_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSK_EEEvDpOT_ Unexecuted instantiation: PredictableMemOpt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114AvailableValueELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSJ_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSJ_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EE7emplaceIJSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EE7emplaceIJRKSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EE7emplaceIJSH_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EE7emplaceIJRKSH_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ValueLifetimeAnalysisELb0EE7emplaceIJPNS2_11SILArgumentENS2_14TransformRangeINS_8ArrayRefIPNS2_7OperandEEENS2_11semanticarc18OwnershipLiveRange13OperandToUserEEEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ValueLifetimeAnalysisELb0EE7emplaceIJRPNS2_14SILInstructionENS2_14TransformRangeINS_8ArrayRefIPNS2_7OperandEEENS2_11semanticarc18OwnershipLiveRange13OperandToUserEEEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSO_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EE7emplaceIJS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSO_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift15SILPrintContextELb0EE7emplaceIJRNS_11raw_ostreamEbbEEEvDpOT_ Line | Count | Source | 126 | 1.13k | template <class... Args> void emplace(Args &&...args) { | 127 | 1.13k | reset(); | 128 | 1.13k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1.13k | hasVal = true; | 130 | 1.13k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EE7emplaceIJS8_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EE7emplaceIJS7_EEEvDpOT_ Line | Count | Source | 126 | 121 | template <class... Args> void emplace(Args &&...args) { | 127 | 121 | reset(); | 128 | 121 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 121 | hasVal = true; | 130 | 121 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EE7emplaceIJRKS7_EEEvDpOT_ Line | Count | Source | 126 | 184 | template <class... Args> void emplace(Args &&...args) { | 127 | 184 | reset(); | 128 | 184 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 184 | hasVal = true; | 130 | 184 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EE7emplaceIJSC_EEEvDpOT_ Line | Count | Source | 126 | 46 | template <class... Args> void emplace(Args &&...args) { | 127 | 46 | reset(); | 128 | 46 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 46 | hasVal = true; | 130 | 46 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EE7emplaceIJRKSC_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EE7emplaceIJS7_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS7_vEENS_6detail12DenseMapPairIS7_jEEEELb0EE7emplaceIJEEEvDpOT_ Line | Count | Source | 126 | 6 | template <class... Args> void emplace(Args &&...args) { | 127 | 6 | reset(); | 128 | 6 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 6 | hasVal = true; | 130 | 6 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EE7emplaceIJRKS7_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEELb0EE7emplaceIJEEEvDpOT_ Line | Count | Source | 126 | 998 | template <class... Args> void emplace(Args &&...args) { | 127 | 998 | reset(); | 128 | 998 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 998 | hasVal = true; | 130 | 998 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13BasicBlockSetELb0EE7emplaceIJRPNS2_11SILFunctionEEEEvDpOT_ Line | Count | Source | 126 | 1 | template <class... Args> void emplace(Args &&...args) { | 127 | 1 | reset(); | 128 | 1 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1 | hasVal = true; | 130 | 1 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 126 | 1.08k | template <class... Args> void emplace(Args &&...args) { | 127 | 1.08k | reset(); | 128 | 1.08k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1.08k | hasVal = true; | 130 | 1.08k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift25FindLocalApplySitesResultELb0EE7emplaceIJEEEvDpOT_ Line | Count | Source | 126 | 1.09k | template <class... Args> void emplace(Args &&...args) { | 127 | 1.09k | reset(); | 128 | 1.09k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 1.09k | hasVal = true; | 130 | 1.09k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingELb0EE7emplaceIJRKS4_EEEvDpOT_ Line | Count | Source | 126 | 32 | template <class... Args> void emplace(Args &&...args) { | 127 | 32 | reset(); | 128 | 32 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 32 | hasVal = true; | 130 | 32 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EE7emplaceIJRKS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EE7emplaceIJSE_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS5_18ModuleDepGraphNodeEEELb0EE7emplaceIJRKSA_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13serialization26PrettyStackTraceModuleFileELb0EE7emplaceIJRA101_KcRNS2_10ModuleFileEEEEvDpOT_ Line | Count | Source | 126 | 69 | template <class... Args> void emplace(Args &&...args) { | 127 | 69 | reset(); | 128 | 69 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 69 | hasVal = true; | 130 | 69 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24SerializedModuleBaseNameELb0EE7emplaceIJRS3_EEEvDpOT_ Line | Count | Source | 126 | 198 | template <class... Args> void emplace(Args &&...args) { | 127 | 198 | reset(); | 128 | 198 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 198 | hasVal = true; | 130 | 198 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering13TypeConverter18GenericContextRAIIELb0EE7emplaceIJRS4_RNS2_19CanGenericSignatureEEEEvDpOT_ Line | Count | Source | 126 | 116 | template <class... Args> void emplace(Args &&...args) { | 127 | 116 | reset(); | 128 | 116 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 116 | hasVal = true; | 130 | 116 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EE7emplaceIJS4_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJSM_EEEvDpOT_ Line | Count | Source | 126 | 14 | template <class... Args> void emplace(Args &&...args) { | 127 | 14 | reset(); | 128 | 14 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 14 | hasVal = true; | 130 | 14 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EE7emplaceIJRKSM_EEEvDpOT_ Line | Count | Source | 126 | 28 | template <class... Args> void emplace(Args &&...args) { | 127 | 28 | reset(); | 128 | 28 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 28 | hasVal = true; | 130 | 28 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EE7emplaceIJRNS2_11SILFunctionENS3_17ErrorBehaviorKind7inner_tEEEEvDpOT_ Line | Count | Source | 126 | 10.9k | template <class... Args> void emplace(Args &&...args) { | 127 | 10.9k | reset(); | 128 | 10.9k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 10.9k | hasVal = true; | 130 | 10.9k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EE7emplaceIJRKNS2_11SILFunctionENS3_17ErrorBehaviorKind7inner_tEPjEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker12ErrorBuilderELb0EE7emplaceIJRKNS2_11SILFunctionENS3_17ErrorBehaviorKind7inner_tEEEEvDpOT_ Line | Count | Source | 126 | 3 | template <class... Args> void emplace(Args &&...args) { | 127 | 3 | reset(); | 128 | 3 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 3 | hasVal = true; | 130 | 3 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EE7emplaceIJS7_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EE7emplaceIJNS_19SmallPtrSetIteratorIS6_EESB_EEEvDpOT_ Line | Count | Source | 126 | 37 | template <class... Args> void emplace(Args &&...args) { | 127 | 37 | reset(); | 128 | 37 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 37 | hasVal = true; | 130 | 37 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EE7emplaceIJRS5_EEEvDpOT_ Line | Count | Source | 126 | 99 | template <class... Args> void emplace(Args &&...args) { | 127 | 99 | reset(); | 128 | 99 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 99 | hasVal = true; | 130 | 99 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEELb0EE7emplaceIJRKS7_EEEvDpOT_ Line | Count | Source | 126 | 17 | template <class... Args> void emplace(Args &&...args) { | 127 | 17 | reset(); | 128 | 17 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 17 | hasVal = true; | 130 | 17 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference10BindingSetELb0EE7emplaceIJS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16SelectedOverloadELb0EE7emplaceIJRS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EE7emplaceIJRKS4_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EE7emplaceIJRPNS2_4ExprERNS3_16ConstraintSystemEEEEvDpOT_ Line | Count | Source | 126 | 113 | template <class... Args> void emplace(Args &&...args) { | 127 | 113 | reset(); | 128 | 113 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 113 | hasVal = true; | 130 | 113 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreIPN5swift11DeclContextEEELb0EE7emplaceIJRS5_PNS3_11ClosureExprEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ConjunctionStep14SolverSnapshotELb0EE7emplaceIJRNS3_16ConstraintSystemERPNS3_10ConstraintEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS5_11constraints17ConstraintLocatorEEEEjEELb0EE7emplaceIJSB_RjEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EE7emplaceIJRNS_12PointerUnionIJPNS2_4ExprEPNS3_17ConstraintLocatorEEEERNS3_16ConstraintSystemERjEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_19TypeVariableBindingEEELb0EE7emplaceIJSB_RSC_EEEvDpOT_ Line | Count | Source | 126 | 81 | template <class... Args> void emplace(Args &&...args) { | 127 | 81 | reset(); | 128 | 81 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 81 | hasVal = true; | 130 | 81 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_17DisjunctionChoiceEEELb0EE7emplaceIJSB_RSC_EEEvDpOT_ Line | Count | Source | 126 | 31 | template <class... Args> void emplace(Args &&...args) { | 127 | 31 | reset(); | 128 | 31 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 31 | hasVal = true; | 130 | 31 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS2_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS2_14default_deleteIS8_EEEENS6_18ConjunctionElementEEELb0EE7emplaceIJSB_RSC_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints15ExpressionTimerELb0EE7emplaceIJPNS3_17ConstraintLocatorERNS3_16ConstraintSystemEEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference17PotentialBindingsELb0EE7emplaceIJRNS3_16ConstraintSystemERPNS2_16TypeVariableTypeEEEEvDpOT_ Line | Count | Source | 126 | 2.98k | template <class... Args> void emplace(Args &&...args) { | 127 | 2.98k | reset(); | 128 | 2.98k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 2.98k | hasVal = true; | 130 | 2.98k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINS2_IjLj1EEELj4EEELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift20GenericTypeParamTypeEEELb0EE7emplaceIJRmRS6_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 126 | 41 | template <class... Args> void emplace(Args &&...args) { | 127 | 41 | reset(); | 128 | 41 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 41 | hasVal = true; | 130 | 41 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15ReferencedActorELb0EE7emplaceIJRKS3_EEEvDpOT_ Line | Count | Source | 126 | 41 | template <class... Args> void emplace(Args &&...args) { | 127 | 41 | reset(); | 128 | 41 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 41 | hasVal = true; | 130 | 41 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoELb0EE7emplaceIJRKS4_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift18ConformanceCheckerELb0EE7emplaceIJRNS2_10ASTContextERPNS2_25NormalProtocolConformanceERNS_9SetVectorINS2_14MissingWitnessENSt3__16vectorISC_NSD_9allocatorISC_EEEENS_8DenseSetISC_NS_12DenseMapInfoISC_vEEEEEEEEEvDpOT_ Line | Count | Source | 126 | 9 | template <class... Args> void emplace(Args &&...args) { | 127 | 9 | reset(); | 128 | 9 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 9 | hasVal = true; | 130 | 9 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18InFlightDiagnosticELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EE7emplaceIJS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift15RequirementReprENS4_11RequirementEEELb0EE7emplaceIJRS6_RS7_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystemELb0EE7emplaceIJRPNS2_11DeclContextENS3_21ConstraintSystemFlagsEEEEvDpOT_ Line | Count | Source | 126 | 982 | template <class... Args> void emplace(Args &&...args) { | 127 | 982 | reset(); | 128 | 982 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 982 | hasVal = true; | 130 | 982 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EE7emplaceIJRKS6_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_4pairIPN5swift18AssociatedTypeDeclENS5_4TypeEEENS2_9allocatorIS9_EEEELb0EE7emplaceIJSC_EEEvDpOT_ Line | Count | Source | 126 | 174 | template <class... Args> void emplace(Args &&...args) { | 127 | 174 | reset(); | 128 | 174 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 174 | hasVal = true; | 130 | 174 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117FunctionBodyTimerELb0EE7emplaceIJRPN5swift20AbstractFunctionDeclEEEEvDpOT_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117FunctionBodyTimerELb0EE7emplaceIJRPN5swift11ClosureExprEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperLValuenessELb0EE7emplaceIJRKS3_EEEvDpOT_ TypeCheckType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126SILInnerGenericContextRAIIELb0EE7emplaceIJRPN5swift24SILTypeResolutionContextERPNS6_16GenericParamListEEEEvDpOT_ Line | Count | Source | 126 | 16 | template <class... Args> void emplace(Args &&...args) { | 127 | 16 | reset(); | 128 | 16 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 16 | hasVal = true; | 130 | 16 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticSuppressionELb0EE7emplaceIJRNS2_16DiagnosticEngineEEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EE7emplaceIJRKS8_EEEvDpOT_ Line | Count | Source | 126 | 490 | template <class... Args> void emplace(Args &&...args) { | 127 | 490 | reset(); | 128 | 490 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 490 | hasVal = true; | 130 | 490 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15DiagnosticQueueELb0EE7emplaceIJRNS2_16DiagnosticEngineEbEEEvDpOT_ Line | Count | Source | 126 | 20 | template <class... Args> void emplace(Args &&...args) { | 127 | 20 | reset(); | 128 | 20 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 20 | hasVal = true; | 130 | 20 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser13ContextChangeELb0EE7emplaceIJRS3_RPNS2_10SourceFileEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21DiagnosticTransactionELb0EE7emplaceIJRNS2_16DiagnosticEngineEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17ParseFunctionBodyELb0EE7emplaceIJRS3_RPNS2_25PatternBindingInitializerEEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser28CancellableBacktrackingScopeELb0EE7emplaceIJRS3_EEEvDpOT_ Line | Count | Source | 126 | 10 | template <class... Args> void emplace(Args &&...args) { | 127 | 10 | reset(); | 128 | 10 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 10 | hasVal = true; | 130 | 10 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser13ContextChangeELb0EE7emplaceIJRS3_RPNS2_16TopLevelCodeDeclEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5Lexer21ForwardSlashRegexRAIIELb0EE7emplaceIJRS3_RbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14SaveAndRestoreINS_8OptionalIN5swift12StableHasherEEEEELb0EE7emplaceIJRS6_RKNSt3__19nullopt_tEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6Parser17BacktrackingScopeELb0EE7emplaceIJRS3_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift18ClangTypeConverterELb0EE7emplaceIJRNS2_10ASTContextERN5clang10ASTContextERKNS_6TripleEEEEvDpOT_ Line | Count | Source | 126 | 5 | template <class... Args> void emplace(Args &&...args) { | 127 | 5 | reset(); | 128 | 5 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 5 | hasVal = true; | 130 | 5 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TypeLookupErrorELb0EE7emplaceIJS3_EEEvDpOT_ ASTPrinter.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111TypePrinterELb0EE7emplaceIJRN5swift10ASTPrinterERNS6_12PrintOptionsEEEEvDpOT_ Line | Count | Source | 126 | 58 | template <class... Args> void emplace(Args &&...args) { | 127 | 58 | reset(); | 128 | 58 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 58 | hasVal = true; | 130 | 58 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EE7emplaceIJSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift13AvailableAttrEPKNS4_4DeclEEELb0EE7emplaceIJRKSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EE7emplaceIJS9_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EE7emplaceIJRKS9_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 126 | 900 | template <class... Args> void emplace(Args &&...args) { | 127 | 900 | reset(); | 128 | 900 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 129 | 900 | hasVal = true; | 130 | 900 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EE7emplaceIJS9_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EE7emplaceIJS9_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies25DependencyScanningServiceELb0EE7emplaceIJNS4_12ScanningModeENS4_20ScanningOutputFormatENS2_10CASOptionsEDnDnDnbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang7tooling12dependencies25DependencyScanningServiceELb0EE7emplaceIJNS4_12ScanningModeERKNS4_20ScanningOutputFormatERKNS2_10CASOptionsENSt3__110shared_ptrINS_3cas11ObjectStoreEEENSG_INSH_11ActionCacheEEENS_18IntrusiveRefCntPtrINSH_23CachingOnDiskFileSystemEEEbbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift7CanTypeELj4EEELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIN5swift10IdentifierENS3_12PluginLoader11PluginEntryENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EE7emplaceIJRibEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14raw_fd_ostreamELb0EE7emplaceIJRKNS_9StringRefERNSt3__110error_codeENS_3sys2fs9OpenFlagsEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_16NamedRegionTimerELb0EE7emplaceIJRNS_9StringRefES6_RA6_KcRA18_S7_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS2_9allocatorIS6_EEEELb0EE7emplaceIJEEEvDpOT_ |
131 | | |
132 | 216 | OptionalStorage &operator=(T const &y) { |
133 | 216 | if (has_value()) { |
134 | 47 | val = y; |
135 | 169 | } else { |
136 | 169 | ::new ((void *)std::addressof(val)) T(y); |
137 | 169 | hasVal = true; |
138 | 169 | } |
139 | 216 | return *this; |
140 | 216 | } _ZN4llvm15optional_detail15OptionalStorageIN5swift10DiagnosticELb0EEaSERKS3_ Line | Count | Source | 132 | 57 | OptionalStorage &operator=(T const &y) { | 133 | 57 | if (has_value()) { | 134 | 0 | val = y; | 135 | 57 | } else { | 136 | 57 | ::new ((void *)std::addressof(val)) T(y); | 137 | 57 | hasVal = true; | 138 | 57 | } | 139 | 57 | return *this; | 140 | 57 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EEaSERKS2_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS5_20ModuleDependencyInfoEEELj1EEELb0EEaSERKS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6markup12CommentPartsELb0EEaSERKS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift18ClusteredBitVectorELb0EEaSERKS3_ Line | Count | Source | 132 | 2 | OptionalStorage &operator=(T const &y) { | 133 | 2 | if (has_value()) { | 134 | 0 | val = y; | 135 | 2 | } else { | 136 | 2 | ::new ((void *)std::addressof(val)) T(y); | 137 | 2 | hasVal = true; | 138 | 2 | } | 139 | 2 | return *this; | 140 | 2 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen15FunctionPointerELb0EEaSERKS4_ Line | Count | Source | 132 | 9 | OptionalStorage &operator=(T const &y) { | 133 | 9 | if (has_value()) { | 134 | 0 | val = y; | 135 | 9 | } else { | 136 | 9 | ::new ((void *)std::addressof(val)) T(y); | 137 | 9 | hasVal = true; | 138 | 9 | } | 139 | 9 | return *this; | 140 | 9 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SILDebugLocationENS4_16SILDebugVariableEEELb0EEaSERKS7_ Line | Count | Source | 132 | 13 | OptionalStorage &operator=(T const &y) { | 133 | 13 | if (has_value()) { | 134 | 0 | val = y; | 135 | 13 | } else { | 136 | 13 | ::new ((void *)std::addressof(val)) T(y); | 137 | 13 | hasVal = true; | 138 | 13 | } | 139 | 13 | return *this; | 140 | 13 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEaSERKS8_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjjEELb0EEaSERKS4_ Line | Count | Source | 132 | 135 | OptionalStorage &operator=(T const &y) { | 133 | 135 | if (has_value()) { | 134 | 47 | val = y; | 135 | 88 | } else { | 136 | 88 | ::new ((void *)std::addressof(val)) T(y); | 137 | 88 | hasVal = true; | 138 | 88 | } | 139 | 135 | return *this; | 140 | 135 | } |
|
141 | 873 | OptionalStorage &operator=(T &&y) { |
142 | 873 | if (has_value()) { |
143 | 17 | val = std::move(y); |
144 | 856 | } else { |
145 | 856 | ::new ((void *)std::addressof(val)) T(std::move(y)); |
146 | 856 | hasVal = true; |
147 | 856 | } |
148 | 873 | return *this; |
149 | 873 | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_17TargetLibraryInfoELb0EEaSEOS2_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEaSEOS8_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12Preprocessor19MacroAnnotationInfoELb0EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3orc23JITTargetMachineBuilderELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13ModuleBuffersELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEaSEOS2_ _ZN4llvm15optional_detail15OptionalStorageINS_3vfs10OutputFileELb0EEaSEOS3_ Line | Count | Source | 141 | 2 | OptionalStorage &operator=(T &&y) { | 142 | 2 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 2 | } else { | 145 | 2 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 2 | hasVal = true; | 147 | 2 | } | 148 | 2 | return *this; | 149 | 2 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EEaSEOS3_ Unexecuted instantiation: IRGenSIL.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112LoweredValueELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__13setIaNS2_4lessIaEENS2_9allocatorIaEEEELb0EEaSEOS8_ _ZN4llvm15optional_detail15OptionalStorageINS_10DataLayoutELb0EEaSEOS2_ Line | Count | Source | 141 | 3 | OptionalStorage &operator=(T &&y) { | 142 | 3 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 3 | } else { | 145 | 3 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 3 | hasVal = true; | 147 | 3 | } | 148 | 3 | return *this; | 149 | 3 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEELb0EEaSEOS6_ SILGenApply.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_18CallSiteELb0EEaSEOS3_ Line | Count | Source | 141 | 143 | OptionalStorage &operator=(T &&y) { | 142 | 143 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 143 | } else { | 145 | 143 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 143 | hasVal = true; | 147 | 143 | } | 148 | 143 | return *this; | 149 | 143 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering27InitializeDistActorIdentityELb0EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEaSEOS3_ Line | Count | Source | 141 | 18 | OptionalStorage &operator=(T &&y) { | 142 | 18 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 18 | } else { | 145 | 18 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 18 | hasVal = true; | 147 | 18 | } | 148 | 18 | return *this; | 149 | 18 | } |
DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EEaSEOSC_ Line | Count | Source | 141 | 102 | OptionalStorage &operator=(T &&y) { | 142 | 102 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 102 | } else { | 145 | 102 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 102 | hasVal = true; | 147 | 102 | } | 148 | 102 | return *this; | 149 | 102 | } |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEELb0EEaSEOSA_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSL_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEELb0EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EEaSEOS8_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSM_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EEaSEOSL_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EEaSEOSK_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSJ_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueES5_EELb0EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EEaSEOSO_ _ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EEaSEOS2_ Line | Count | Source | 141 | 454 | OptionalStorage &operator=(T &&y) { | 142 | 454 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 454 | } else { | 145 | 454 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 454 | hasVal = true; | 147 | 454 | } | 148 | 454 | return *this; | 149 | 454 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyInfoELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22SwiftDependencyTrackerELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_jEEEELb0EEaSEOSB_ _ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJjjEEELb0EEaSEOS4_ Line | Count | Source | 141 | 4 | OptionalStorage &operator=(T &&y) { | 142 | 4 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 4 | } else { | 145 | 4 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 4 | hasVal = true; | 147 | 4 | } | 148 | 4 | return *this; | 149 | 4 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSM_ Line | Count | Source | 141 | 18 | OptionalStorage &operator=(T &&y) { | 142 | 18 | if (has_value()) { | 143 | 11 | val = std::move(y); | 144 | 11 | } else { | 145 | 7 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 7 | hasVal = true; | 147 | 7 | } | 148 | 18 | return *this; | 149 | 18 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ValueOwnershipKindELb0EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7VarDeclEPNS4_9BraceStmtEEELb0EEaSEOS9_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift11constraints10ConstraintENS5_5ScoreEEELb0EEaSEOS9_ Line | Count | Source | 141 | 29 | OptionalStorage &operator=(T &&y) { | 142 | 29 | if (has_value()) { | 143 | 6 | val = std::move(y); | 144 | 23 | } else { | 145 | 23 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 23 | hasVal = true; | 147 | 23 | } | 148 | 29 | return *this; | 149 | 29 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12LookupResultELb0EEaSEOS3_ Line | Count | Source | 141 | 53 | OptionalStorage &operator=(T &&y) { | 142 | 53 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 53 | } else { | 145 | 53 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 53 | hasVal = true; | 147 | 53 | } | 148 | 53 | return *this; | 149 | 53 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjN5swift11SourceRangeEEELb0EEaSEOS6_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift11AccessScopeEbEELb0EEaSEOS6_ Line | Count | Source | 141 | 30 | OptionalStorage &operator=(T &&y) { | 142 | 30 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 30 | } else { | 145 | 30 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 30 | hasVal = true; | 147 | 30 | } | 148 | 30 | return *this; | 149 | 30 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12CXXScopeSpecELb0EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift7ASTNodeENS2_9allocatorIS5_EEEELb0EEaSEOS8_ Line | Count | Source | 141 | 17 | OptionalStorage &operator=(T &&y) { | 142 | 17 | if (has_value()) { | 143 | 0 | val = std::move(y); | 144 | 17 | } else { | 145 | 17 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 146 | 17 | hasVal = true; | 147 | 17 | } | 148 | 17 | return *this; | 149 | 17 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEELb0EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S9_EEEELb0EEaSEOSF_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10ModuleDeclENS4_10IdentifierEEELb0EEaSEOS8_ |
150 | | |
151 | 261 | OptionalStorage &operator=(OptionalStorage const &other) { |
152 | 261 | if (other.has_value()) { |
153 | 125 | if (has_value()) { |
154 | 0 | val = other.val; |
155 | 125 | } else { |
156 | 125 | ::new ((void *)std::addressof(val)) T(other.val); |
157 | 125 | hasVal = true; |
158 | 125 | } |
159 | 136 | } else { |
160 | 136 | reset(); |
161 | 136 | } |
162 | 261 | return *this; |
163 | 261 | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEaSERKS4_ _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEaSERKS9_ Line | Count | Source | 151 | 16 | OptionalStorage &operator=(OptionalStorage const &other) { | 152 | 16 | if (other.has_value()) { | 153 | 0 | if (has_value()) { | 154 | 0 | val = other.val; | 155 | 0 | } else { | 156 | 0 | ::new ((void *)std::addressof(val)) T(other.val); | 157 | 0 | hasVal = true; | 158 | 0 | } | 159 | 16 | } else { | 160 | 16 | reset(); | 161 | 16 | } | 162 | 16 | return *this; | 163 | 16 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_10PGOOptionsELb0EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14WeakTrackingVHELb0EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5clang10CASOptionsELb0EEaSERKS4_ Line | Count | Source | 151 | 88 | OptionalStorage &operator=(OptionalStorage const &other) { | 152 | 88 | if (other.has_value()) { | 153 | 0 | if (has_value()) { | 154 | 0 | val = other.val; | 155 | 0 | } else { | 156 | 0 | ::new ((void *)std::addressof(val)) T(other.val); | 157 | 0 | hasVal = true; | 158 | 0 | } | 159 | 88 | } else { | 160 | 88 | reset(); | 161 | 88 | } | 162 | 88 | return *this; | 163 | 88 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_6TripleELb0EEaSERKS3_ Line | Count | Source | 151 | 32 | OptionalStorage &operator=(OptionalStorage const &other) { | 152 | 32 | if (other.has_value()) { | 153 | 0 | if (has_value()) { | 154 | 0 | val = other.val; | 155 | 0 | } else { | 156 | 0 | ::new ((void *)std::addressof(val)) T(other.val); | 157 | 0 | hasVal = true; | 158 | 0 | } | 159 | 32 | } else { | 160 | 32 | reset(); | 161 | 32 | } | 162 | 32 | return *this; | 163 | 32 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EEaSERKS5_ _ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEaSERKS3_ Line | Count | Source | 151 | 77 | OptionalStorage &operator=(OptionalStorage const &other) { | 152 | 77 | if (other.has_value()) { | 153 | 77 | if (has_value()) { | 154 | 0 | val = other.val; | 155 | 77 | } else { | 156 | 77 | ::new ((void *)std::addressof(val)) T(other.val); | 157 | 77 | hasVal = true; | 158 | 77 | } | 159 | 77 | } else { | 160 | 0 | reset(); | 161 | 0 | } | 162 | 77 | return *this; | 163 | 77 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EEaSERKS8_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EEaSERKS8_ DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEELb0EEaSERKSD_ Line | Count | Source | 151 | 47 | OptionalStorage &operator=(OptionalStorage const &other) { | 152 | 47 | if (other.has_value()) { | 153 | 47 | if (has_value()) { | 154 | 0 | val = other.val; | 155 | 47 | } else { | 156 | 47 | ::new ((void *)std::addressof(val)) T(other.val); | 157 | 47 | hasVal = true; | 158 | 47 | } | 159 | 47 | } else { | 160 | 0 | reset(); | 161 | 0 | } | 162 | 47 | return *this; | 163 | 47 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_12SILSuccessor13pred_iteratorEEEEELb0EEaSERKSC_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_17TransformIteratorIPNS4_12SILSuccessorEPFS6_RKS9_EEEEEEELb0EEaSERKSI_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EEaSERKS8_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EEaSERKSD_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPKN5swift10CustomAttrEPNS4_4DeclEEELb0EEaSERKSB_ _ZN4llvm15optional_detail15OptionalStorageIN5clang13DarwinSDKInfoELb0EEaSERKS4_ Line | Count | Source | 151 | 1 | OptionalStorage &operator=(OptionalStorage const &other) { | 152 | 1 | if (other.has_value()) { | 153 | 1 | if (has_value()) { | 154 | 0 | val = other.val; | 155 | 1 | } else { | 156 | 1 | ::new ((void *)std::addressof(val)) T(other.val); | 157 | 1 | hasVal = true; | 158 | 1 | } | 159 | 1 | } else { | 160 | 0 | reset(); | 161 | 0 | } | 162 | 1 | return *this; | 163 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift10RawCommentEPKNS4_4DeclEEELb0EEaSERKSA_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairINS_9StringRefEPKN5swift4DeclEEELb0EEaSERKSA_ |
164 | | |
165 | 4.74k | OptionalStorage &operator=(OptionalStorage &&other) { |
166 | 4.74k | if (other.has_value()) { |
167 | 2.11k | if (has_value()) { |
168 | 0 | val = std::move(other.val); |
169 | 2.11k | } else { |
170 | 2.11k | ::new ((void *)std::addressof(val)) T(std::move(other.val)); |
171 | 2.11k | hasVal = true; |
172 | 2.11k | } |
173 | 2.63k | } else { |
174 | 2.63k | reset(); |
175 | 2.63k | } |
176 | 4.74k | return *this; |
177 | 4.74k | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEELb0EEaSEOSC_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__16vectorIN5swift18ModuleDependencyIDENS2_9allocatorIS5_EEEELb0EEaSEOS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfoELb0EEaSEOS5_ DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesELb0EEaSEOS5_ Line | Count | Source | 165 | 38 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 38 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 38 | } else { | 174 | 38 | reset(); | 175 | 38 | } | 176 | 38 | return *this; | 177 | 38 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift7version7VersionELb0EEaSEOS5_ Line | Count | Source | 165 | 1 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 1 | if (other.has_value()) { | 167 | 1 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 1 | } else { | 170 | 1 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 1 | hasVal = true; | 172 | 1 | } | 173 | 1 | } else { | 174 | 0 | reset(); | 175 | 0 | } | 176 | 1 | return *this; | 177 | 1 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetailsELb0EEaSEOS5_ Line | Count | Source | 165 | 107 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 107 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 107 | } else { | 174 | 107 | reset(); | 175 | 107 | } | 176 | 107 | return *this; | 177 | 107 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_5APIntELb0EEaSEOS3_ Line | Count | Source | 165 | 90 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 90 | if (other.has_value()) { | 167 | 76 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 76 | } else { | 170 | 76 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 76 | hasVal = true; | 172 | 76 | } | 173 | 76 | } else { | 174 | 14 | reset(); | 175 | 14 | } | 176 | 90 | return *this; | 177 | 90 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_21BottomUpRefCountStateEEELb0EEaSEOS8_ Line | Count | Source | 165 | 301 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 301 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 301 | } else { | 174 | 301 | reset(); | 175 | 301 | } | 176 | 301 | return *this; | 177 | 301 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS4_20TopDownRefCountStateEEELb0EEaSEOS8_ Line | Count | Source | 165 | 133 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 133 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 133 | } else { | 174 | 133 | reset(); | 175 | 133 | } | 176 | 133 | return *this; | 177 | 133 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_21BottomUpRefCountStateEEELb0EEaSEOS9_ Line | Count | Source | 165 | 31 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 31 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 31 | } else { | 174 | 31 | reset(); | 175 | 31 | } | 176 | 31 | return *this; | 177 | 31 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS4_20TopDownRefCountStateEEELb0EEaSEOS9_ Line | Count | Source | 165 | 27 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 27 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 27 | } else { | 174 | 27 | reset(); | 175 | 27 | } | 176 | 27 | return *this; | 177 | 27 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionPathELb0EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_INS4_8SILValueEEEEEEENS4_14FrozenMultiMapIS6_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSM_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS4_7SILTypeEEELb0EEaSEOS9_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift7OperandENS4_28FieldSensitivePrunedLiveness15InterestingUserEEELb0EEaSEOSA_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift14SILInstructionENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSN_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_INS5_20DebugVarCarryingInstEEEEEEENS5_14FrozenMultiMapIjS8_NS2_6vectorISA_NS2_9allocatorISA_EEEEE15PairToSecondEltEEEEEEELb0EEaSEOSM_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_8OptionalIN5swift14TransformRangeINS_8ArrayRefINS3_IjNS4_IPNS5_22SingleValueInstructionEEEEEEENS5_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEEEELb0EEaSEOSL_ Line | Count | Source | 165 | 88 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 88 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 88 | } else { | 174 | 88 | reset(); | 175 | 88 | } | 176 | 88 | return *this; | 177 | 88 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_IS5_EEEEEENS4_14FrozenMultiMapIS5_S5_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSK_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILDebugVariableELb0EEaSEOS4_ Line | Count | Source | 165 | 1.05k | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 1.05k | if (other.has_value()) { | 167 | 768 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 768 | } else { | 170 | 768 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 768 | hasVal = true; | 172 | 768 | } | 173 | 768 | } else { | 174 | 291 | reset(); | 175 | 291 | } | 176 | 1.05k | return *this; | 177 | 1.05k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc7Context21ConsumingOperandStateELb0EEaSEOS6_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift8SILValueENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS5_NS6_INS4_11semanticarc7Context21ConsumingOperandStateEEEEEEENS4_14FrozenMultiMapIS5_SB_NS2_6vectorISD_NS2_9allocatorISD_EEEEE15PairToSecondEltEEEEEEELb0EEaSEOSP_ Line | Count | Source | 165 | 530 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 530 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 530 | } else { | 174 | 530 | reset(); | 175 | 530 | } | 176 | 530 | return *this; | 177 | 530 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEELb0EEaSEOS9_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjPN5swift15EnumElementDeclEEELb0EEaSEOS8_ Line | Count | Source | 165 | 43 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 43 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 43 | } else { | 174 | 43 | reset(); | 175 | 43 | } | 176 | 43 | return *this; | 177 | 43 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIjNS_11SmallVectorINS3_IPN5swift13SILBasicBlockEPNS5_15EnumElementDeclEEELj2EEEEELb0EEaSEOSD_ Line | Count | Source | 165 | 31 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 31 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 31 | } else { | 174 | 31 | reset(); | 175 | 31 | } | 176 | 31 | return *this; | 177 | 31 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12siloptimizer7CleanupIvJPNS2_14SILInstructionEEEELb0EEaSEOS8_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS2_4hashIS7_EENS2_8equal_toIS7_EENS2_9allocatorIS7_EEEELb0EEaSEOSF_ _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS4_14TransformRangeINS_8ArrayRefINS3_IS6_NS7_IPNS4_7OperandEEEEEEENS4_14FrozenMultiMapIS6_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEEEEEELb0EEaSEOSN_ Line | Count | Source | 165 | 14 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 14 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 14 | } else { | 174 | 14 | reset(); | 175 | 14 | } | 176 | 14 | return *this; | 177 | 14 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIPN5swift10CustomAttrEPNS4_15NominalTypeDeclEEELb0EEaSEOSA_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16RequirementMatchELb0EEaSEOS4_ Line | Count | Source | 165 | 982 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 982 | if (other.has_value()) { | 167 | 0 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 0 | } else { | 170 | 0 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 0 | hasVal = true; | 172 | 0 | } | 173 | 982 | } else { | 174 | 982 | reset(); | 175 | 982 | } | 176 | 982 | return *this; | 177 | 982 | } |
_ZN4llvm15optional_detail15OptionalStorageINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEELb0EEaSEOS9_ Line | Count | Source | 165 | 490 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 490 | if (other.has_value()) { | 167 | 490 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 490 | } else { | 170 | 490 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 490 | hasVal = true; | 172 | 490 | } | 173 | 490 | } else { | 174 | 0 | reset(); | 175 | 0 | } | 176 | 490 | return *this; | 177 | 490 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11FingerprintELb0EEaSEOS4_ Line | Count | Source | 165 | 778 | OptionalStorage &operator=(OptionalStorage &&other) { | 166 | 778 | if (other.has_value()) { | 167 | 778 | if (has_value()) { | 168 | 0 | val = std::move(other.val); | 169 | 778 | } else { | 170 | 778 | ::new ((void *)std::addressof(val)) T(std::move(other.val)); | 171 | 778 | hasVal = true; | 172 | 778 | } | 173 | 778 | } else { | 174 | 0 | reset(); | 175 | 0 | } | 176 | 778 | return *this; | 177 | 778 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas5CASIDELb0EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELb0EEaSEOS9_ |
178 | | }; |
179 | | |
180 | | template <typename T> class OptionalStorage<T, true> { |
181 | | union { |
182 | | char empty; |
183 | | T val; |
184 | | }; |
185 | | bool hasVal = false; |
186 | | |
187 | | public: |
188 | | ~OptionalStorage() = default; |
189 | | |
190 | 2.70M | constexpr OptionalStorage() noexcept : empty{} {}_ZN4llvm15optional_detail15OptionalStorageIjLb1EEC2Ev Line | Count | Source | 190 | 332k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21CopyPropagationOptionELb1EEC2Ev Line | Count | Source | 190 | 17 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11LangOptions23ASTVerifierOverrideKindELb1EEC2Ev Line | Count | Source | 190 | 4 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIbLb1EEC2Ev Line | Count | Source | 190 | 72.0k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EEC2Ev Line | Count | Source | 190 | 11.2k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3vfs12OutputConfigELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKNS_8FunctionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EEC2Ev Line | Count | Source | 190 | 9.82k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EEC2Ev Line | Count | Source | 190 | 8.09k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIhLb1EEC2Ev Unexecuted instantiation: swift_api_digester_main.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift3ide3api7SDKNodeELb1EEC2Ev Unexecuted instantiation: swift_cache_tool_main.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120SwiftCacheToolActionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EEC2Ev Line | Count | Source | 190 | 16 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EEC2Ev Line | Count | Source | 190 | 1.67k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift20ModuleDependencyInfoELb1EEC2Ev Unexecuted instantiation: Index.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_19MappedLocELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider15EnumElementInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12FunctionTypeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16OptionalTypeKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20PrimitiveTypeMapping13ClangTypeInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES5_EEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19ClangRepresentationELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift26IntermoduleDepTrackingModeELb1EEC2Ev Line | Count | Source | 190 | 103 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15FrontendOptions25ClangHeaderExposeBehaviorELb1EEC2Ev Line | Count | Source | 190 | 103 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27UnavailableDeclOptimizationEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift27UnavailableDeclOptimizationELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift17StrictConcurrencyEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17StrictConcurrencyELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28AccessNoteDiagnosticBehaviorELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16ConcurrencyModelELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIbEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift21DestroyHoistingOptionELb1EEC2Ev Line | Count | Source | 190 | 13 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21DestroyHoistingOptionEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21CopyPropagationOptionEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16JITDebugArtifactEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16JITDebugArtifactELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16IRGenLLVMLTOKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16IRGenLLVMLTOKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFvvEEELb1EEC2Ev Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15LineColumnRangeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13serialization6StatusELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift3ide3api15SDKNodeDeclTypeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift3ide3api11SDKNodeDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api7KeyKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api7KeyKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8DeclKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EEC2Ev Line | Count | Source | 190 | 164 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8DeclKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12EnumCaseDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift13AvailableAttrELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11SILAnalysis16InvalidationKindELb1EEC2Ev Line | Count | Source | 190 | 318 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13AtomicRMWInst5BinOpELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetails12DirectResultELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPNS_5ValueELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen7AddressELb1EEC2Ev Line | Count | Source | 190 | 102 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPNS_5ValueEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7SILTypeEEELb1EEC2Ev Line | Count | Source | 190 | 2 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift27RestatedObjCConformanceAttrELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen11ClassLayoutELb1EEC2Ev Line | Count | Source | 190 | 4 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift5irgen19NonFixedOffsetsImplELb1EEC2Ev Line | Count | Source | 190 | 146 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen10LinkEntityELb1EEC2Ev Line | Count | Source | 190 | 22 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPNS_8FunctionELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoELb1EEC2Ev Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_119LinearFuncFieldInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen9AtomicityELb1EEC2Ev Line | Count | Source | 190 | 11 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPNS_4TypeELb1EEC2Ev Line | Count | Source | 190 | 8 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: GenFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_140AsyncPartialApplicationForwarderEmission4SelfELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen12StackAddressELb1EEC2Ev Line | Count | Source | 190 | 8 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12RoundingModeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_2fp17ExceptionBehaviorELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen19TypeEntityReferenceELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionELb1EEC2Ev Line | Count | Source | 190 | 10 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18GenericRequirementELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14MetadataSourceELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS6_12ConstantInitEEEELb1EEC2Ev Line | Count | Source | 190 | 8 | constexpr OptionalStorage() noexcept : empty{} {} |
GenStruct.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114ClangFieldInfoELb1EEC2Ev Line | Count | Source | 190 | 4 | constexpr OptionalStorage() noexcept : empty{} {} |
GenStruct.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_115StructFieldInfoELb1EEC2Ev Line | Count | Source | 190 | 33 | constexpr OptionalStorage() noexcept : empty{} {} |
GenTuple.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114TupleFieldInfoELb1EEC2Ev Line | Count | Source | 190 | 28 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider16SizeAndAlignmentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageItLb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_9CodeModel5ModelELb1EEC2Ev Line | Count | Source | 190 | 9 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoINS_9StringRefEEELb1EEC2Ev Line | Count | Source | 190 | 4 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen22CompletedDebugTypeInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPNS_8ConstantELb1EEC2Ev Line | Count | Source | 190 | 7 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPNS_9InlineAsmELb1EEC2Ev Line | Count | Source | 190 | 7 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13OperationCostELb1EEC2Ev Line | Count | Source | 190 | 48 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EEC2Ev Line | Count | Source | 190 | 32 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIhEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_5MachO13PackedVersionELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift5irgen13FixedTypeInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen9AlignmentELb1EEC2Ev Line | Count | Source | 190 | 15 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen4SizeEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen9AlignmentEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIjEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift7RT_KindELb1EEC2Ev Line | Count | Source | 190 | 359 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_16OperandBundleUseELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift8Lowering14InitializationEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EEC2Ev Line | Count | Source | 190 | 326 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12ProtocolDeclELb1EEC2Ev Line | Count | Source | 190 | 18 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift8FuncDeclELb1EEC2Ev Line | Count | Source | 190 | 132 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift18AssociatedTypeDeclELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift7VarDeclELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift19ProtocolConformanceELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift18DifferentiableAttrELb1EEC2Ev Line | Count | Source | 190 | 5.81k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift14DerivativeAttrELb1EEC2Ev Line | Count | Source | 190 | 5.63k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EEC2Ev Line | Count | Source | 190 | 7 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14CalleeTypeInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18SpecializedEmitterELb1EEC2Ev Line | Count | Source | 190 | 79 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering15FunctionSectionELb1EEC2Ev Line | Count | Source | 190 | 12 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering10ConversionELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering22ConversionPeepholeHintELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EEC2Ev Line | Count | Source | 190 | 49 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering8JumpDestELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering10Conversion6KindTyELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering20LogicalPathComponent13AccessStorageELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering12ManagedValueELb1EEC2Ev Line | Count | Source | 190 | 74 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24DifferentiationThunkKindELb1EEC2Ev Line | Count | Source | 190 | 13 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15AnyFunctionTypeEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntryELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift16MatchingSetFlagsELb1EEC2Ev Line | Count | Source | 190 | 65 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift13SILBasicBlockELb1EEC2Ev Line | Count | Source | 190 | 4.72k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ArrayCallKindELb1EEC2Ev Line | Count | Source | 190 | 140 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift21EpilogueARCBlockStateELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift10LoopRegion11SuccessorIDELb1EEC2Ev Line | Count | Source | 190 | 53 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKjLb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift13EndAccessInstELb1EEC2Ev Line | Count | Source | 190 | 10 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15SILFunctionTypeEEELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18MarkDependenceInstELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25SILInstructionResultArrayELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EEC2Ev Line | Count | Source | 190 | 40 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EEC2Ev Line | Count | Source | 190 | 1.12k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15FixLifetimeInstELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12TryApplyInstELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14AllocStackInstELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9ApplySiteELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_16PartialApplyInstENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj16EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15DestroyAddrInstELb1EEC2Ev DefiniteInitialization.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16DIKindELb1EEC2Ev Line | Count | Source | 190 | 620 | constexpr OptionalStorage() noexcept : empty{} {} |
DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114RecordedAccessELb1EEC2Ev Line | Count | Source | 190 | 69 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalINS2_8SILValueEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_7SILNodeENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS6_IPNS2_7OperandENS2_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS2_14FrozenMultiMapIS8_SE_NS_11SmallVectorISG_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalINS2_20DebugVarCarryingInstEEEEEEENS2_14FrozenMultiMapIjS8_NS5_6vectorISA_NS5_9allocatorISA_EEEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalIPNS2_22SingleValueInstructionEEEEEEENS2_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift13EndBorrowInstELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalIS7_EEEEEENS2_14FrozenMultiMapIS7_S7_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev YieldOnceCheck.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorELb1EEC2Ev Line | Count | Source | 190 | 42 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: YieldOnceCheck.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck7BBStateELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12SILSuccessor13pred_iteratorELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9StoreInstELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SymbolicValueELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16DestroyValueInstELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKind7innertyELb1EEC2Ev Line | Count | Source | 190 | 783k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKindELb1EEC2Ev Line | Count | Source | 190 | 783k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKind7innertyELb1EEC2Ev Line | Count | Source | 190 | 58.1k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKindELb1EEC2Ev Line | Count | Source | 190 | 58.1k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EEC2Ev Line | Count | Source | 190 | 5.01k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_5AlignELb1EEC2Ev Line | Count | Source | 190 | 726 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ReferenceOwnershipELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ProfileCounterEEELb1EEC2Ev Line | Count | Source | 190 | 72 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EEC2Ev Line | Count | Source | 190 | 901 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EEC2Ev Line | Count | Source | 190 | 4.81k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8PassKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift14SILInstructionELb1EEC2Ev Line | Count | Source | 190 | 305 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift29ConcreteOpenedExistentialInfoELb1EEC2Ev Line | Count | Source | 190 | 649 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI20ConcreteArgumentCopyLb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc19OwnershipPhiOperandELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalINS2_11semanticarc7Context21ConsumingOperandStateEEEEEEENS2_14FrozenMultiMapIS7_SB_NS5_6vectorISD_NS5_9allocatorISD_EEEEE15PairToSecondEltEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift14SILInstructionEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift21MarkUninitializedInst4KindELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift13CopyValueInstELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16DeallocStackInstELb1EEC2Ev Unexecuted instantiation: RedundantOverflowCheckRemoval.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationELb1EEC2Ev SILMem2Reg.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120StorageStateTrackingINS2_10LiveValuesEEELb1EEC2Ev Line | Count | Source | 190 | 57 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift15StoreBorrowInstELb1EEC2Ev Line | Count | Source | 190 | 28 | constexpr OptionalStorage() noexcept : empty{} {} |
SILMem2Reg.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_110LiveValuesELb1EEC2Ev Line | Count | Source | 190 | 3 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22LoadOwnershipQualifierELb1EEC2Ev Line | Count | Source | 190 | 36 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13LoadOperationELb1EEC2Ev Line | Count | Source | 190 | 77 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProfileCounterELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageI17WellKnownFunctionLb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EEC2Ev Line | Count | Source | 190 | 649 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEELb1EEC2Ev Line | Count | Source | 190 | 64.1k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN21LexicalDestroyFolding5MatchELb1EEC2Ev SILInliner.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114BeginApplySiteELb1EEC2Ev Line | Count | Source | 190 | 444 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10ModuleDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api11SDKNodeKindELb1EEC2Ev Unexecuted instantiation: APIDigesterData.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115DiffItemKeyKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api15APIDiffItemKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api11SDKNodeKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api14NodeAnnotationELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api13SpecialCaseIdELb1EEC2Ev Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113IndentContextELb1EEC2Ev Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115ContextOverride8OverrideELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift4ExprELb1EEC2Ev Line | Count | Source | 190 | 1.11k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8ArgumentELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift4StmtELb1EEC2Ev Line | Count | Source | 190 | 419 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift7PatternELb1EEC2Ev Line | Count | Source | 190 | 1.94k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112TrailingInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift5TokenELb1EEC2Ev Line | Count | Source | 190 | 254 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeReprELb1EEC2Ev Line | Count | Source | 190 | 889 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide17ResolvedRangeInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10AccessKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12ArgumentListELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7LocatedIPNS2_12ArgumentListEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver6Driver10DriverKindELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver20IncrementalJobAction9InputInfo6StatusELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo7LTOKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo11MSVCRuntimeELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7options2IDELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver6Driver10DriverKindEEELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo7LTOKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver3Job16ResponseFileInfoELb1EEC2Ev Line | Count | Source | 190 | 2 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15RequirementKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI20LayoutConstraintKindLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12ReadImplKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13WriteImplKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ReadWriteImplKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19DefaultArgumentKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolation4KindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILCoroutineKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift19ParameterConventionELb1EEC2Ev Line | Count | Source | 190 | 8 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift29SILParameterDifferentiabilityELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16ResultConventionELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift26SILResultDifferentiabilityELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang11ConceptDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23StableSerializationPath12ExternalPath13ComponentKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang14IdentifierInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang22OverloadedOperatorKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang7TagDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang20TemplateTypeParmDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17StringLiteralInst8EncodingELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntry4KindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift14ImportedModuleELb1EEC2Ev Line | Count | Source | 190 | 213 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10ModuleDecl16ImportFilterKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11LibraryKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ExpandedMacroDefinitionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_18PointerEmbeddedIntIjLi31EEELb1EEC2Ev Line | Count | Source | 190 | 9.07k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang11ConceptDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang14IdentifierInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12TemplateNameELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang7TagDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang20TemplateTypeParmDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift4DeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang4TypeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift11DeclContextELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift16GenericSignatureELb1EEC2Ev Line | Count | Source | 190 | 444 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift18GenericEnvironmentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15PackConformanceELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift9SILLayoutELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15SILArgumentKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPKN5swift11EffectsAttrELb1EEC2Ev Line | Count | Source | 190 | 135 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift10ExposeAttrELb1EEC2Ev Line | Count | Source | 190 | 174 | constexpr OptionalStorage() noexcept : empty{} {} |
SILFunctionType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoELb1EEC2Ev Line | Count | Source | 190 | 574 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift26FunctionTypeRepresentationELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift15SubstitutionMapELb1EEC2Ev Line | Count | Source | 190 | 291 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKind7innertyELb1EEC2Ev Line | Count | Source | 190 | 69.2k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKindELb1EEC2Ev Line | Count | Source | 190 | 69.2k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16BuiltinValueKindELb1EEC2Ev Line | Count | Source | 190 | 3.30k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10SILLinkageELb1EEC2Ev Line | Count | Source | 190 | 26 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIyLb1EEC2Ev Line | Count | Source | 190 | 557 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ProfileCounterRefELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7ASTNodeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILSymbolVisitor11DynamicKindELb1EEC2Ev Line | Count | Source | 190 | 48 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9ValueBase25DefiningInstructionResultELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13OwnershipKind7innertyELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13OwnershipKind7innertyEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift7CanTypeELb1EEC2Ev Line | Count | Source | 190 | 152 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13CapturedValueELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EEC2Ev Line | Count | Source | 190 | 3.85k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14AnyFunctionRefELb1EEC2Ev Line | Count | Source | 190 | 9 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16SubElementOffsetELb1EEC2Ev Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_4clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EEC2Ev Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_4clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17TransformIteratorIPNS2_12SILSuccessorEPFPNS2_13SILBasicBlockERKS4_EEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPKNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EEC2Ev Line | Count | Source | 190 | 1.75k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift20AccessRepresentation4KindELb1EEC2Ev Line | Count | Source | 190 | 5.06k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13AccessStorageELb1EEC2Ev Line | Count | Source | 190 | 2.93k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift17AccessStorageCastELb1EEC2Ev Line | Count | Source | 190 | 2.93k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift10BranchInstELb1EEC2Ev Line | Count | Source | 190 | 32 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_7remarks14RemarkLocationELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift10ProjectionELb1EEC2Ev Line | Count | Source | 190 | 582 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_2clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EEC2Ev Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_2clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift7OperandEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift7OperandELb1EEC2Ev Line | Count | Source | 190 | 405 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EEC2Ev Line | Count | Source | 190 | 315 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker5ErrorELb1EEC2Ev Line | Count | Source | 190 | 458 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift13SILBasicBlockEEEELb1EEC2Ev Line | Count | Source | 190 | 455 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift7OperandEEEELb1EEC2Ev Line | Count | Source | 190 | 458 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EEC2Ev Line | Count | Source | 190 | 3.79k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test12BoolArgumentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test12UIntArgumentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test8ArgumentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJyxNS_9StringRefEEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJPNS2_11SILFunctionEPNS2_13SILBasicBlockEEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12AccessorKindEEELb1EEC2Ev Line | Count | Source | 190 | 12 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift18SILInstructionKindEEELb1EEC2Ev Line | Count | Source | 190 | 27 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18SILInstructionKindELb1EEC2Ev Line | Count | Source | 190 | 27 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23OpenedExistentialAccessEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23OpenedExistentialAccessELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19CastConsumptionKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23StoreOwnershipQualifierELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24AssignOwnershipQualifierELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AssignByWrapperInst4ModeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16AssignOrInitInst4ModeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9SILParser19UnresolvedValueNameELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift10SILLinkageEEELb1EEC2Ev Line | Count | Source | 190 | 4 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8coverage7CounterELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedReferenceBindingInst4KindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22LoadOwnershipQualifierEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift19CastConsumptionKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23StoreOwnershipQualifierEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift24AssignOwnershipQualifierEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift9BraceStmtELb1EEC2Ev Line | Count | Source | 190 | 148 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystem15TypeMatchResultELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12PointerUnionIJPN5swift4StmtEPNS3_4DeclEEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIN5swift20StmtConditionElementEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift13CaseLabelItemELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17CaseLabelItemInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16FunctionTypeReprELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19TypeResolutionStageELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentELb1EEC2Ev Unexecuted instantiation: CSSyntacticElement.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_123SyntacticElementContextELb1EEC2Ev Unexecuted instantiation: CSGen.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationELb1EEC2Ev Unexecuted instantiation: CSRanking.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121TypeBindingsToCompareELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeELb1EEC2Ev Line | Count | Source | 190 | 92 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17CompletionArgInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeBaseELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11constraints13ConstraintFixELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift15AnyFunctionType5ParamELb1EEC2Ev Line | Count | Source | 190 | 13 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints14ConstraintKindELb1EEC2Ev Line | Count | Source | 190 | 2.12k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeELb1EEC2Ev Line | Count | Source | 190 | 10 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12TupleElementELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyELb1EEC2Ev Line | Count | Source | 190 | 12 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints18MemberLookupResult14UnviableReasonELb1EEC2Ev Line | Count | Source | 190 | 62 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift10IdentifierEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchELb1EEC2Ev CSStep.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift11constraints13ComponentStep4takeEbE8StepKindLb1EEC2Ev Line | Count | Source | 190 | 669 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EEC2Ev Line | Count | Source | 190 | 1.06k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints25ConversionRestrictionKindELb1EEC2Ev Line | Count | Source | 190 | 427 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints18ConjunctionElementELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9ScoreKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints11FixBehaviorELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeEEEELb1EEC2Ev Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm15optional_detail15OptionalStorageIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23TrailingClosureMatchingELb1EEC2Ev Line | Count | Source | 190 | 1.28k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints25SingleValueStmtBranchKindELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentELb1EEC2Ev Line | Count | Source | 190 | 1.22k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchELb1EEC2Ev Line | Count | Source | 190 | 2.95k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints18ContextualTypeInfoELb1EEC2Ev Line | Count | Source | 190 | 285 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints7FixKindELb1EEC2Ev Line | Count | Source | 190 | 26 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionELb1EEC2Ev Line | Count | Source | 190 | 4.38k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16IUOReferenceKindELb1EEC2Ev Line | Count | Source | 190 | 1.30k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints20FunctionArgApplyInfoELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints14OverloadChoiceELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericELb1EEC2Ev Line | Count | Source | 190 | 4.83k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23AppliedBuilderTransformELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference16PotentialBindingELb1EEC2Ev Line | Count | Source | 190 | 470 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptELb1EEC2Ev Line | Count | Source | 190 | 2.95k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberELb1EEC2Ev Line | Count | Source | 190 | 3.01k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableELb1EEC2Ev Line | Count | Source | 190 | 2.95k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints19TypeVariableBindingELb1EEC2Ev Line | Count | Source | 190 | 2 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23CompletionContextFinder8FallbackELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI19RuntimeVersionCheckLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11DeclNameRefELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift26MagicIdentifierLiteralExpr4KindELb1EEC2Ev Line | Count | Source | 190 | 24 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJEEELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageI35AbstractFunctionDeclLookupErrorKindLb1EEC2Ev Line | Count | Source | 190 | 8 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJbNS2_4TypeEEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift19ExportabilityReasonELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift20UnavailabilityReasonELb1EEC2Ev Line | Count | Source | 190 | 405 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: TypeCheckAvailability.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ReplacementDeclKindELb1EEC2Ev TypeCheckConcurrency.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PartialApplyThunkInfoELb1EEC2Ev Line | Count | Source | 190 | 248 | constexpr OptionalStorage() noexcept : empty{} {} |
TypeCheckConcurrency.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126MemberIsolationPropagationELb1EEC2Ev Line | Count | Source | 190 | 330 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22DispatchQueueOperationELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22DispatchQueueOperationEEELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8ExprKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ContextualTypePurposeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EEC2Ev Line | Count | Source | 190 | 24 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterELb1EEC2Ev TypeCheckDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121ImplicitlyFinalReasonELb1EEC2Ev Line | Count | Source | 190 | 13 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22AutomaticEnumValueKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift25PrecedenceGroupDescriptor13PathDirectionELb1EEC2Ev Line | Count | Source | 190 | 13 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10ObjCReasonELb1EEC2Ev Line | Count | Source | 190 | 341 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJjNS2_8DeclNameENS2_12ObjCSelectorEEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7LocatedINS2_18StaticSpellingKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18StaticSpellingKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ParamDeclELb1EEC2Ev Line | Count | Source | 190 | 87 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_17ContextELb1EEC2Ev TypeCheckEffects.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EEC2Ev Line | Count | Source | 190 | 904 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10EffectKindELb1EEC2Ev Line | Count | Source | 190 | 102 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ExternalMacroDefinitionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11SourceRangeELb1EEC2Ev Line | Count | Source | 190 | 113 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23SyntacticTypoCorrectionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift15CheckedCastKindELb1EEC2Ev Line | Count | Source | 190 | 23 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EEC2Ev Line | Count | Source | 190 | 4.75k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22RequirementEnvironmentELb1EEC2Ev Line | Count | Source | 190 | 864 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14AutoDiffConfigELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessScopeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeES4_EEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift12VarRefUseEnvELb1EEC2Ev Line | Count | Source | 190 | 174 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SendableCheckELb1EEC2Ev Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm15optional_detail15OptionalStorageIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS2_9ClassDeclEE16UnstableNameKindLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8DeclNameELb1EEC2Ev Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElementELb1EEC2Ev Line | Count | Source | 190 | 39.3k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19TypeWitnessConflictELb1EEC2Ev Line | Count | Source | 190 | 174 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AbstractTypeWitnessELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25RegexCaptureStructureCodeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeResolutionELb1EEC2Ev Line | Count | Source | 190 | 103 | constexpr OptionalStorage() noexcept : empty{} {} |
TypeCheckStorage.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessELb1EEC2Ev Line | Count | Source | 190 | 71 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift29SILFunctionTypeRepresentationEEELb1EEC2Ev Line | Count | Source | 190 | 23 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift29SILFunctionTypeRepresentationELb1EEC2Ev Line | Count | Source | 190 | 99 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift26FunctionTypeRepresentationEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13SanitizerKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SanitizerKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_24SanitizerCoverageOptions4TypeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPKN5clang4DeclELb1EEC2Ev Line | Count | Source | 190 | 814 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang6ModuleELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3sys2fs9file_typeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3sys2fs5permsELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15MemoryBufferRefELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIxLb1EEC2Ev Line | Count | Source | 190 | 26 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIlLb1EEC2Ev Line | Count | Source | 190 | 19 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ImportedModuleEEELb1EEC2Ev Line | Count | Source | 190 | 1.15k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang19ASTSourceDescriptorELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5clang8QualTypeELb1EEC2Ev Line | Count | Source | 190 | 18 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConvention4InfoELb1EEC2Ev Line | Count | Source | 190 | 154 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift30ObjCInterfaceAndImplementationELb1EEC2Ev Line | Count | Source | 190 | 33 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13ClangTypeKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift8importer12ImportedNameELb1EEC2Ev Line | Count | Source | 190 | 71 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5clang13SwiftAttrAttrELb1EEC2Ev Line | Count | Source | 190 | 32 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12PlatformKindELb1EEC2Ev Line | Count | Source | 190 | 335 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EEC2Ev Line | Count | Source | 190 | 395 | constexpr OptionalStorage() noexcept : empty{} {} |
ImportDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112AccessorInfoELb1EEC2Ev Line | Count | Source | 190 | 6 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12DeclBaseNameELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift18MappedTypeNameKindELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12PlatformKindEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift16GenericParamListELb1EEC2Ev Line | Count | Source | 190 | 2.35k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4KindELb1EEC2Ev ImportName.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_116AnySwiftNameAttrELb1EEC2Ev Line | Count | Source | 190 | 533 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: ImportType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112ImportResultELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang8EnumDeclELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13ClangImporter14Implementation25ImportParameterTypeResultELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4InfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift3tokELb1EEC2Ev Line | Count | Source | 190 | 32 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14SpecializeAttr18SpecializationKindELb1EEC2Ev Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseStorageRestrictionsAttributeENS2_9SourceLocES4_E10AccessKindLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10InlineKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16OptimizationModeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15ExclusivityAttr4ModeELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS_9StringRefES4_EEELb1EEC2Ev Line | Count | Source | 190 | 166 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13AssociativityELb1EEC2Ev Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseExtendedAvailabilitySpecListENS2_9SourceLocES4_NS_9StringRefEE3$_4Lb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift21DifferentiabilityKindELb1EEC2Ev Line | Count | Source | 190 | 87 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift11AccessLevelEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9MacroRoleEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27MacroIntroducedDeclNameKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift27MacroIntroducedDeclNameKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15NonSendableKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13AssociativityEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8StmtKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20AvailabilitySpecKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21PlatformConditionKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21PlatformConditionKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TuplePatternEltELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageImLb1EEC2Ev Line | Count | Source | 190 | 127 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7ASTNodeEEELb1EEC2Ev Line | Count | Source | 190 | 17 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift23SourceFileParsingResultELb1EEC2Ev Line | Count | Source | 190 | 17 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingState4KindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift7VarDecl10IntroducerELb1EEC2Ev Line | Count | Source | 190 | 172 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EEC2Ev Line | Count | Source | 190 | 15 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift15EnumElementDeclELb1EEC2Ev Line | Count | Source | 190 | 2.13k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12ModuleLoader23ModuleVersionSourceKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift18ExternalSourceLocsELb1EEC2Ev Line | Count | Source | 190 | 31 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EEC2Ev Line | Count | Source | 190 | 4.66k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EEC2Ev Line | Count | Source | 190 | 3.37k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21KnownFoundationEntityELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift22MetatypeRepresentationELb1EEC2Ev Line | Count | Source | 190 | 6.63k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift17KnownProtocolKindELb1EEC2Ev Line | Count | Source | 190 | 5.19k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25ForeignRepresentationInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EEC2Ev Line | Count | Source | 190 | 30.3k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift13SemanticsAttrELb1EEC2Ev Line | Count | Source | 190 | 301 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21KnownFoundationEntityEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift10ASTExtInfoELb1EEC2Ev Line | Count | Source | 190 | 24.5k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EEC2Ev Line | Count | Source | 190 | 5.91k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle10ASTBuilder17ForeignModuleKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle26ImplMetatypeRepresentationELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle23ImplParameterConventionELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle30ImplParameterDifferentiabilityELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle20ImplResultConventionELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle27ImplResultDifferentiabilityELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle18ImplFunctionResultINS2_4TypeEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalI20LayoutConstraintKindEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIcLb1EEC2Ev Line | Count | Source | 190 | 354 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6Mangle10ASTMangler14SpecialContextELb1EEC2Ev Line | Count | Source | 190 | 2.57k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift14SpecializeAttrELb1EEC2Ev Line | Count | Source | 190 | 311 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift23OriginallyDefinedInAttrELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPKN5swift23SynthesizedProtocolAttrELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15CharSourceRangeELb1EEC2Ev Line | Count | Source | 190 | 527 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EEC2Ev Line | Count | Source | 190 | 264 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift13DeclAttributeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23OriginallyDefinedInAttr13ActiveVersionELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKindELb1EEC2Ev Line | Count | Source | 190 | 11 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12TypeAttrKindELb1EEC2Ev Line | Count | Source | 190 | 126 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12DeclAttrKindELb1EEC2Ev Line | Count | Source | 190 | 243 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift15NonSendableAttrELb1EEC2Ev Line | Count | Source | 190 | 5 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19TangentPropertyInfo5ErrorELb1EEC2Ev Line | Count | Source | 190 | 12 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEELb1EEC2Ev Line | Count | Source | 190 | 12 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EEC2Ev Line | Count | Source | 190 | 6.20k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14AtomicOrderingELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes10ConventionELb1EEC2Ev Line | Count | Source | 190 | 935 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes19OpaqueReturnTypeRefELb1EEC2Ev Line | Count | Source | 190 | 889 | constexpr OptionalStorage() noexcept : empty{} {} |
ClangTypeConverter.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS2_16BoundGenericTypeEE10StructKindLb1EEC2Ev Line | Count | Source | 190 | 8 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10ImportKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EEC2Ev Line | Count | Source | 190 | 246 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15KeyPathTypeKindELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift20ImplicitMemberActionELb1EEC2Ev Line | Count | Source | 190 | 242 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift20RequirementSignatureELb1EEC2Ev Line | Count | Source | 190 | 990 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift26KnownDerivableProtocolKindELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14ParamSpecifierELb1EEC2Ev Line | Count | Source | 190 | 157 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperMutabilityELb1EEC2Ev Line | Count | Source | 190 | 142 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11InitializerELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16BuiltinMacroKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift13MacroRoleAttrELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift4DeclELb1EEC2Ev Line | Count | Source | 190 | 67 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14DiagnosticInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift20TypeTransformContextELb1EEC2Ev Line | Count | Source | 190 | 533 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup9ParagraphELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup12ReturnsFieldELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup11ThrowsFieldELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup20LocalizationKeyFieldELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift6markup10ParamFieldELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10RawCommentELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift22ApplyIsolationCrossingELb1EEC2Ev Line | Count | Source | 190 | 141 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies8NodeKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies10DeclAspectELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EEC2Ev Line | Count | Source | 190 | 11 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift9MacroRoleELb1EEC2Ev Line | Count | Source | 190 | 93 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift5TokenEEELb1EEC2Ev Line | Count | Source | 190 | 165 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12StableHasherELb1EEC2Ev Line | Count | Source | 190 | 314 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16AttributedImportINS2_14ImportedModuleEEELb1EEC2Ev Line | Count | Source | 190 | 18.2k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift38PropertyWrapperSynthesizedPropertyKindELb1EEC2Ev Line | Count | Source | 190 | 1.31k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift16AttributedImportINS3_14ImportedModuleEEEEELb1EEC2Ev Line | Count | Source | 190 | 17 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18ArtificialMainKindELb1EEC2Ev Line | Count | Source | 190 | 10 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11CommentInfoELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPKN5swift10CustomAttrELb1EEC2Ev Line | Count | Source | 190 | 5.20k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift20SPIAccessControlAttrELb1EEC2Ev Line | Count | Source | 190 | 646 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8CaseStmtELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ClassDeclELb1EEC2Ev Line | Count | Source | 190 | 84 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift12ProtocolDeclEEELb1EEC2Ev Line | Count | Source | 190 | 238 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift9ValueDeclEEELb1EEC2Ev Line | Count | Source | 190 | 23 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift15NominalTypeDeclELb1EEC2Ev Line | Count | Source | 190 | 13 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift14DestructorDeclELb1EEC2Ev Line | Count | Source | 190 | 2 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefINS_9StringRefEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift11RequirementEEELb1EEC2Ev Line | Count | Source | 190 | 48 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EEC2Ev Line | Count | Source | 190 | 54.4k | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift9rewriting11PropertyBagELb1EEC2Ev Line | Count | Source | 190 | 31.7k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9rewriting10DebugFlagsEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9rewriting10DebugFlagsELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift9rewriting4TermEEELb1EEC2Ev Line | Count | Source | 190 | 722 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22ProtocolConformanceRefELb1EEC2Ev Line | Count | Source | 190 | 29 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19CanGenericSignatureELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15cxx_translation19RepresentationErrorELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12TangentSpaceELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift14SelfAccessKindELb1EEC2Ev Line | Count | Source | 190 | 110 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19OpaqueReadOwnershipELb1EEC2Ev Line | Count | Source | 190 | 45 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15StorageImplInfoELb1EEC2Ev Line | Count | Source | 190 | 137 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12AccessorDeclELb1EEC2Ev Line | Count | Source | 190 | 73 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJEEELb1EEC2Ev Line | Count | Source | 190 | 267 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift19PatternBindingEntryELb1EEC2Ev Line | Count | Source | 190 | 46 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12NamedPatternELb1EEC2Ev Line | Count | Source | 190 | 22 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ExprPatternMatchResultELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift18TypeWitnessAndDeclELb1EEC2Ev Line | Count | Source | 190 | 1 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7WitnessELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIPN5swift11IndexSubsetELb1EEC2Ev Line | Count | Source | 190 | 25 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIDnLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIdLb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21EditorPlaceholderDataELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageIN5swift10file_types2IDELb1EEC2Ev Line | Count | Source | 190 | 104 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIiLb1EEC2Ev Line | Count | Source | 190 | 532 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18DiagnosticBehaviorELb1EEC2Ev Line | Count | Source | 190 | 2.91k | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7FeatureELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift7FeatureEEELb1EEC2Ev _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalINS_9StringRefEEELb1EEC2Ev Line | Count | Source | 190 | 980 | constexpr OptionalStorage() noexcept : empty{} {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19GeneratedSourceInfoELb1EEC2Ev Line | Count | Source | 190 | 605 | constexpr OptionalStorage() noexcept : empty{} {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16BlockListKeyKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15BlockListActionELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle4Node4KindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle16ValueWitnessKindELb1EEC2Ev Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle10DirectnessELb1EEC2Ev |
191 | | |
192 | | constexpr OptionalStorage(OptionalStorage const &other) = default; |
193 | | constexpr OptionalStorage(OptionalStorage &&other) = default; |
194 | | |
195 | | OptionalStorage &operator=(OptionalStorage const &other) = default; |
196 | | OptionalStorage &operator=(OptionalStorage &&other) = default; |
197 | | |
198 | | template <class... Args> |
199 | | constexpr explicit OptionalStorage(std::in_place_t, Args &&...args) |
200 | 1.86M | : val(std::forward<Args>(args)...), hasVal(true) {}Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11LangOptions23ASTVerifierOverrideKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIbLb1EEC2IJbEEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 59.5k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_3vfs12OutputConfigELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: swift_api_digester_main.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.55k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: Index.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_19MappedLocELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider15EnumElementInfoELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16OptionalTypeKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12FunctionTypeELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15NominalTypeDeclELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16OptionalTypeKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20PrimitiveTypeMapping13ClangTypeInfoELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19ClangRepresentationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15FrontendOptions25ClangHeaderExposeBehaviorELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift27UnavailableDeclOptimizationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17StrictConcurrencyELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift28AccessNoteDiagnosticBehaviorELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 95 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21DestroyHoistingOptionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21CopyPropagationOptionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16JITDebugArtifactELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16IRGenLLVMLTOKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ DiagnosticVerifier.cpp:_ZN4llvm15optional_detail15OptionalStorageIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnLb1EEC2IJSC_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 12 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15LineColumnRangeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 6 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14SourceFileKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 11 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6BLAKE3ELb1EEC2IJEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift3ide3api15SDKNodeDeclTypeELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift3ide3api11SDKNodeDeclELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api7KeyKindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8DeclKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift12EnumCaseDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 5 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift4ExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 31.3k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift4StmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.23k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift7PatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3.81k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12ArgumentListELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.68k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift13AvailableAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7SILTypeEEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7CanTypeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 33 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift27RestatedObjCConformanceAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPNS_8FunctionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen9AtomicityELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen12StackAddressELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift5irgen19NonFixedOffsetsImplELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 20 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen14MetadataSourceELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18GenericRequirementELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS6_12ConstantInitEEEELb1EEC2IJRKSB_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 21 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider16SizeAndAlignmentELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageItLb1EEC2IJRKtEEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_5Reloc5ModelELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 9 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen22CompletedDebugTypeInfoELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPNS_5ValueEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIhLb1EEC2IJhEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_5MachO13PackedVersionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen9AlignmentELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift5irgen13FixedTypeInfoELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen9AlignmentELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPNS_8ConstantELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_16OperandBundleUseELb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16DiverseStackBase15stable_iteratorELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 435 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift8Lowering14InitializationEEELb1EEC2IJRKS7_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ProfileCounterEEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPKN5swift18DifferentiableAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 387 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift14DerivativeAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 84 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 239 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18SpecializedEmitterELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift21MarkUninitializedInst4KindELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 5 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering10ConversionELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering22ConversionPeepholeHintELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 7 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering8JumpDestELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering10Conversion6KindTyELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering10Conversion6KindTyELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering12ManagedValueELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 21 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering12ManagedValueELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 22 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering20LogicalPathComponent13AccessStorageELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering15FunctionSectionELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 6 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntryELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16MatchingSetFlagsELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 227 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift13SILBasicBlockELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 20.2k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 633 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift21EpilogueARCBlockStateELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.86k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10LoopRegion11SuccessorIDELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 5.19k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKjLb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift13EndAccessInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 30 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift24DifferentiationThunkKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 7 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16SILParameterInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 582 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18MarkDependenceInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25SILInstructionResultArrayELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15FixLifetimeInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12TryApplyInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9ApplySiteELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14AllocStackInstELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ProfileCounterEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 11 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_16PartialApplyInstENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj16EEEE15PairToSecondEltEEELb1EEC2IJSK_EEENS5_10in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift15DestroyAddrInstELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 18 | : val(std::forward<Args>(args)...), hasVal(true) {} |
DefiniteInitialization.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16DIKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 50 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EEC2IJSJ_EEENS5_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_7SILNodeENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EEC2IJSJ_EEENS5_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift13SILBasicBlockELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS6_IPNS2_7OperandENS2_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS2_14FrozenMultiMapIS8_SE_NS_11SmallVectorISG_Lj8EEEE15PairToSecondEltEEELb1EEC2IJSN_EEENS5_10in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20DebugVarCarryingInstELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift22SingleValueInstructionELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift13EndBorrowInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.51k | : val(std::forward<Args>(args)...), hasVal(true) {} |
YieldOnceCheck.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck7BBStateELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 18 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9StoreInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13BorrowedValueELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16DestroyValueInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKind7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 116k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 101k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKind7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 287k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 46.9k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_5AlignELb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ReferenceOwnershipELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift20SILModuleConventionsELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 954 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 22.7k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift14SILInstructionELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 64.0k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift29ConcreteOpenedExistentialInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI20ConcreteArgumentCopyLb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIyLb1EEC2IJyEEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 772 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11semanticarc19OwnershipPhiOperandELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift14SILInstructionEEELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 139 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift13CopyValueInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 9 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16DeallocStackInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ RedundantOverflowCheckRemoval.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 16 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15StoreBorrowInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ SILMem2Reg.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_110LiveValuesELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 24 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10SILLinkageELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 475 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22LoadOwnershipQualifierELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.94k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProfileCounterELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SymbolicValueELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI17WellKnownFunctionLb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SymbolicValueELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEELb1EEC2IJRKS9_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEELb1EEC2IJS9_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 639 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN21LexicalDestroyFolding5MatchELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: SILInliner.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114BeginApplySiteELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 331 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10ModuleDeclELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api11SDKNodeKindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8ArgumentELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5TokenELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112TrailingInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113IndentContextELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeReprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10AccessKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIiLb1EEC2IJiEEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 89.4k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift6driver6Driver10DriverKindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 75 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver20IncrementalJobAction9InputInfo6StatusELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo7LTOKindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo11MSVCRuntimeELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EEC2IJRKS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 980 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7options2IDELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11NullablePtrINS2_25fine_grained_dependencies18ModuleDepGraphNodeEEELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver3Job16ResponseFileInfoELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift15RequirementKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.46k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageI20LayoutConstraintKindLb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 14 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_18PointerEmbeddedIntIjLi31EEELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 9.35k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12ReadImplKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 374 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13WriteImplKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 374 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift17ReadWriteImplKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 374 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift21DifferentiabilityKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 322 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19DefaultArgumentKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.15k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolation4KindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.15k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18StaticSpellingKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2.89k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16SILCoroutineKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 267 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19ParameterConventionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 817 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift29SILParameterDifferentiabilityELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16ResultConventionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 220 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift26SILResultDifferentiabilityELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang11ConceptDeclELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23StableSerializationPath12ExternalPath13ComponentKindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang14IdentifierInfoELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang7TagDeclELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang20TemplateTypeParmDeclELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift17StringLiteralInst8EncodingELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 488 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntry4KindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 10 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11CommentInfoELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift10ModuleDecl16ImportFilterKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 213 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11LibraryKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 71 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang8QualTypeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang11ConceptDeclELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang14IdentifierInfoELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12TemplateNameELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang7TagDeclELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang20TemplateTypeParmDeclELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift4DeclELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang4TypeELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift11DeclContextELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16GenericSignatureELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 44.2k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift18GenericEnvironmentELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift15SubstitutionMapELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19ProtocolConformanceELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15PackConformanceELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift9SILLayoutELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift15SILArgumentKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 27.1k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift11EffectsAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 20 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift10ExposeAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift22MetatypeRepresentationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 632 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift26FunctionTypeRepresentationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 58 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22MetatypeRepresentationELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 83 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10ASTExtInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 6.11k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 482 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKind7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.61k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 41 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16BuiltinValueKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 90.3k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 12.5k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIyLb1EEC2IJRKyEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17ProfileCounterRefELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7ASTNodeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16SILSymbolVisitor11DynamicKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntryELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 21 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9ValueBase25DefiningInstructionResultELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13OwnershipKind7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14AnyFunctionRefELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 877 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16SubElementOffsetELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_4clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EEC2IJSG_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPKNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EEC2IJRKS7_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 5.20k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10BranchInstELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_7remarks14RemarkLocationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14ProjectionKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3.78k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10ProjectionELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 46 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_2clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EEC2IJSG_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift7OperandEEELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift7OperandELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 531 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EEC2IJSK_EEENS5_10in_place_tEDpOT_ Line | Count | Source | 200 | 161 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift13SILBasicBlockEEEELb1EEC2IJRKS7_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift7OperandEEEELb1EEC2IJS7_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker5ErrorELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 19.6k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test12BoolArgumentELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test12UIntArgumentELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test8ArgumentELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJyxNS_9StringRefEEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test8ArgumentELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJPNS2_11SILFunctionEPNS2_13SILBasicBlockEEEELb1EEC2IJS8_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4test14StringArgumentELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift18SILInstructionKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 5.75k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23OpenedExistentialAccessELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19CastConsumptionKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8coverage7CounterELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23StoreOwnershipQualifierELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24AssignOwnershipQualifierELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift9BraceStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 397 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystem15TypeMatchResultELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12PointerUnionIJPN5swift4StmtEPNS3_4DeclEEEELb1EEC2IJS8_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EEC2IJS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIN5swift20StmtConditionElementEEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 122 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift13CaseLabelItemELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17CaseLabelItemInfoELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference16PotentialBindingELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 658 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23TrailingClosureMatchingELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: CSRanking.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121TypeBindingsToCompareELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17CompletionArgInfoELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints7FixKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift11constraints13ConstraintFixELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 42 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15AnyFunctionType5ParamELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift15AnyFunctionType5ParamELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 179 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12TupleElementELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 8 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints18MemberLookupResult14UnviableReasonELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift10IdentifierEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ CSStep.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift11constraints13ComponentStep4takeEbE8StepKindLb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 106 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 29 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints25ConversionRestrictionKindELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 209 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints18ConjunctionElementELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9ScoreKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.44k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints11FixBehaviorELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeES4_EEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints14OverloadChoiceELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints14OverloadChoiceELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeEEEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm15optional_detail15OptionalStorageIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindLb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints25SingleValueStmtBranchKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints18ContextualTypeInfoELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 410 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints16IUOReferenceKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11SourceRangeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints20FunctionArgApplyInfoELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14AnyFunctionRefELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.29k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4.83k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints23AppliedBuilderTransformELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints19TypeVariableBindingELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 84 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23CompletionContextFinder8FallbackELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift26MagicIdentifierLiteralExpr4KindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJEEELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageI35AbstractFunctionDeclLookupErrorKindLb1EEC2IJS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJbNS2_4TypeEEEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift19ExportabilityReasonELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 188 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnavailabilityReasonELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: TypeCheckAvailability.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ReplacementDeclKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16AttributedImportINS2_14ImportedModuleEEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift12VarRefUseEnvELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 41 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PartialApplyThunkInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ TypeCheckConcurrency.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126MemberIsolationPropagationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 579 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13SendableCheckELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 60 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22DispatchQueueOperationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 30 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8ExprKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift21ContextualTypePurposeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 112 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 224 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22AutomaticEnumValueKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PrecedenceGroupDescriptor13PathDirectionELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift10ObjCReasonELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJjNS2_8DeclNameENS2_12ObjCSelectorEEEELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7LocatedINS2_18StaticSpellingKindEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18StaticSpellingKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_17ContextELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ExternalMacroDefinitionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ExternalMacroDefinitionELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11SourceRangeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23SyntacticTypoCorrectionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessScopeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessScopeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 605 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 117 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SendableCheckELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8DeclNameELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElementELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 24.8k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3.31k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift22RequirementEnvironmentELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 119 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AbstractTypeWitnessELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25RegexCaptureStructureCodeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperMutabilityELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift29SILFunctionTypeRepresentationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 520 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift16FunctionTypeReprELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 34 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19TypeResolutionStageELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 34 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SanitizerKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPKN5clang4DeclELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 54 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5clang6ModuleELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 24 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang19ASTSourceDescriptorELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21EffectiveClangContextELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12DeclBaseNameELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang8QualTypeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConvention4InfoELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift30ObjCInterfaceAndImplementationELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13ClangTypeKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8importer12ImportedNameELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 331 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift4DeclELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 57 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12PlatformKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112AccessorInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift18MappedTypeNameKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 10 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift16GenericParamListELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 26.9k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112AccessorInfoELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4KindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4InfoELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConvention4InfoELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: ImportName.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_116AnySwiftNameAttrELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: ImportType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112ImportResultELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang8EnumDeclELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13ClangImporter14Implementation25ImportParameterTypeResultELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 18 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4InfoELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15NonSendableKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS_9StringRefES4_EEELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 752 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13AssociativityELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 84 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift27MacroIntroducedDeclNameKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10InlineKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16OptimizationModeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15ExclusivityAttr4ModeELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ReferenceOwnershipELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15NonSendableKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21PlatformConditionKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15TuplePatternEltELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageImLb1EEC2IJmEEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7ASTNodeEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 114 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift23SourceFileParsingResultELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 114 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12StableHasherELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 135 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8StmtKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingStateELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7VarDecl10IntroducerELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 527 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageImLb1EEC2IJRKmEEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 78.7k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift15EnumElementDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.45k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift18ExternalSourceLocsELb1EEC2IJRKS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 185 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21KnownFoundationEntityELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift10ASTExtInfoELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 6.46k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift17KnownProtocolKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 20.2k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 192k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift13SemanticsAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 30 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 966 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle10ASTBuilder17ForeignModuleKindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13ClangTypeKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle23ImplParameterConventionELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle30ImplParameterDifferentiabilityELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle20ImplResultConventionELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle27ImplResultDifferentiabilityELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIcLb1EEC2IJcEEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift6Mangle10ASTMangler14SpecialContextELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift7VarDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.27k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPKN5swift14SpecializeAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 48 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14BracketOptionsELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 108 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift23OriginallyDefinedInAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift23SynthesizedProtocolAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 256 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ErrorExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14NilLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift18BooleanLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift18IntegerLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 53 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16FloatLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift17StringLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift26MagicIdentifierLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift29InterpolatedStringLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16RegexLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift17ObjectLiteralExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift21DiscardAssignmentExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 6 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift11DeclRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 266 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12SuperRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 58 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift27OtherConstructorDeclRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift24DotSyntaxBaseIgnoredExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift21OverloadedDeclRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift21UnresolvedDeclRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 188 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift13MemberRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 109 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift13SubscriptExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift20DynamicMemberRefExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift20DynamicSubscriptExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift24UnresolvedSpecializeExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 8 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift20UnresolvedMemberExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift17UnresolvedDotExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 13 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12SequenceExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 38 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift9ParenExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11DotSelfExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9AwaitExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10BorrowExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift31UnresolvedMemberChainResultExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8CopyExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11ConsumeExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift7TryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12ForceTryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15OptionalTryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift9TupleExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ArrayExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14DictionaryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift22KeyPathApplicationExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16TupleElementExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15CaptureListExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11ClosureExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15AutoClosureExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift9InOutExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 48 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19VarargExpansionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift17PackExpansionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15PackElementExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19MaterializePackExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15DynamicTypeExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift27RebindSelfInConstructorExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15OpaqueValueExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift35PropertyWrapperValuePlaceholderExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift26AppliedPropertyWrapperExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift19DefaultArgumentExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 21 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16BindOptionalExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift22OptionalEvaluationExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14ForceValueExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19OpenExistentialExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift28MakeTemporarilyEscapableExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift8CallExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 96 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15PrefixUnaryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16PostfixUnaryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift10BinaryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 17 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift17DotSyntaxCallExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 33 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift22ConstructorRefCallExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 23 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift8LoadExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift21ABISafeConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift20DestructureTupleExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift28UnresolvedTypeConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift22FunctionConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift31CovariantFunctionConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift29CovariantReturnConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift22MetatypeConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift30CollectionUpcastConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11ErasureExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift22AnyHashableErasureExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16BridgeToObjCExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18BridgeFromObjCExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift29ConditionalBridgeFromObjCExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift17DerivedToBaseExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift20ArchetypeToSuperExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift22InjectIntoOptionalExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 5 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift25ClassMetatypeToObjectExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift31ExistentialMetatypeToObjectExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift28ProtocolMetatypeToObjectExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18InOutToPointerExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18ArrayToPointerExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19StringToPointerExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift20PointerToPointerExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift27ForeignObjectConversionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift23UnevaluatedInstanceExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift22UnderlyingToOpaqueExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift26DifferentiableFunctionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18LinearFunctionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift41DifferentiableFunctionExtractOriginalExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift33LinearFunctionExtractOriginalExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift34LinearToDifferentiableFunctionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift21ForcedCheckedCastExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift26ConditionalCheckedCastExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift6IsExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10CoerceExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ArrowExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11TernaryExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14EnumIsCaseExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift10AssignExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 40 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18CodeCompletionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift21UnresolvedPatternExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19LazyInitializerExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift21EditorPlaceholderExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16ObjCSelectorExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11KeyPathExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19SingleValueStmtExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14KeyPathDotExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10OneWayExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift7TapExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12TypeJoinExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18MacroExpansionExprELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift10ReturnStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 137 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8ThenStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift9YieldStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 25 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9DeferStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift6IfStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift9GuardStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9WhileStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift6DoStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11DoCatchStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15RepeatWhileStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11ForEachStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift10SwitchStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9BreakStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12ContinueStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15FallthroughStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8FailStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ThrowStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11DiscardStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15PoundAssertStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift12ParenPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 10 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12TuplePatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 8 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift10AnyPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 4 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12TypedPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 855 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift14BindingPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 8 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9IsPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift18EnumElementPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 19 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19OptionalSomePatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11BoolPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11ExprPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift8EnumDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 23 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift10StructDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 138 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12ProtocolDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 39 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16BuiltinTupleDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14OpaqueTypeDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift13TypeAliasDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 486 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift20GenericTypeParamDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.65k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift18AssociatedTypeDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 233 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10ModuleDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ParamDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 10.9k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift13SubscriptDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 27 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift15ConstructorDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 924 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift8FuncDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3.13k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9MacroDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift13ExtensionDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 12 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift16TopLevelCodeDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift10ImportDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 79 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12IfConfigDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19PoundDiagnosticDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift19PrecedenceGroupDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 74 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11MissingDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift17MissingMemberDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift18PatternBindingDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 880 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift17InfixOperatorDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 142 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift18PrefixOperatorDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 10 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19PostfixOperatorDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18MacroExpansionDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPKN5swift13DeclAttributeELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 23.8k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23OriginallyDefinedInAttr13ActiveVersionELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift15NonSendableAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKind7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 24 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift41NormalDifferentiableFunctionTypeComponent7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 41 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift41LinearDifferentiableFunctionTypeComponent7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift36DifferentiabilityWitnessFunctionKind7innertyELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19TangentPropertyInfo5ErrorELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EEC2IJRKS2_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 1.34k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 334 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIbLb1EEC2IJRKbEEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 240 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10ImportKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15KeyPathTypeKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift26KnownDerivableProtocolKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 222 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14ParamSpecifierELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 15.5k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift38PropertyWrapperSynthesizedPropertyKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 334 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift11InitializerELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16BuiltinMacroKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift13MacroRoleAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift4DeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 377 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14DiagnosticInfoELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 45 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift6markup10ParamFieldELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10RawCommentELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies8NodeKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies10DeclAspectELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 14 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9MacroRoleELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18ArtificialMainKindELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift10CustomAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift20SPIAccessControlAttrELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift20ModuleDependencyInfoELb1EEC2IJRKS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift20ModuleDependencyInfoELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift8CaseStmtELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 263 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift9ClassDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 12.7k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift12ProtocolDeclEEELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3.58k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift9ValueDeclEEELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 101 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift15NominalTypeDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 12 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift14DestructorDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 257 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift11RequirementEEELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 576 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9rewriting10DebugFlagsELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 51.0k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift9rewriting4TermEEELb1EEC2IJRKS6_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift22ProtocolConformanceRefELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 442 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15cxx_translation19RepresentationErrorELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift12TangentSpaceELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 38 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift20RequirementSignatureELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 3.37k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14SelfAccessKindELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 10.7k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19OpaqueReadOwnershipELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 570 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15StorageImplInfoELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2.54k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift12AccessorDeclELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2.43k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageINSt3__15tupleIJEEELb1EEC2IJS4_EEENS2_10in_place_tEDpOT_ Line | Count | Source | 200 | 9 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift19PatternBindingEntryELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIPN5swift12NamedPatternELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 916 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ExprPatternMatchResultELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18TypeWitnessAndDeclELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7WitnessELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 108 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift11IndexSubsetELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 165 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7CanTypeELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 106 | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIDnLb1EEC2IJDnEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIdLb1EEC2IJRKdEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIdLb1EEC2IJdEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIxLb1EEC2IJRKxEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIxLb1EEC2IJxEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21EditorPlaceholderDataELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7FeatureELb1EEC2IJS3_EEENSt3__110in_place_tEDpOT_ _ZN4llvm15optional_detail15OptionalStorageIjLb1EEC2IJRKjEEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 51.5k | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIN5swift19GeneratedSourceInfoELb1EEC2IJRKS3_EEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 2 | : val(std::forward<Args>(args)...), hasVal(true) {} |
_ZN4llvm15optional_detail15OptionalStorageIjLb1EEC2IJjEEENSt3__110in_place_tEDpOT_ Line | Count | Source | 200 | 169k | : val(std::forward<Args>(args)...), hasVal(true) {} |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIiLb1EEC2IJRKiEEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle4Node4KindELb1EEC2IJS5_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle16ValueWitnessKindELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle10DirectnessELb1EEC2IJS4_EEENSt3__110in_place_tEDpOT_ |
201 | | |
202 | 1.84k | void reset() noexcept { |
203 | 1.84k | if (hasVal) { |
204 | 369 | val.~T(); |
205 | 369 | hasVal = false; |
206 | 369 | } |
207 | 1.84k | } _ZN4llvm15optional_detail15OptionalStorageINS_5AlignELb1EE5resetEv Line | Count | Source | 202 | 450 | void reset() noexcept { | 203 | 450 | if (hasVal) { | 204 | 0 | val.~T(); | 205 | 0 | hasVal = false; | 206 | 0 | } | 207 | 450 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoIPNS_8MDStringEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoINS_9StringRefEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12Preprocessor16PreambleSkipInfoELb1EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIjLb1EE5resetEv Line | Count | Source | 202 | 8 | void reset() noexcept { | 203 | 8 | if (hasVal) { | 204 | 0 | val.~T(); | 205 | 0 | hasVal = false; | 206 | 0 | } | 207 | 8 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16DiverseStackBase15stable_iteratorELb1EE5resetEv Line | Count | Source | 202 | 348 | void reset() noexcept { | 203 | 348 | if (hasVal) { | 204 | 348 | val.~T(); | 205 | 348 | hasVal = false; | 206 | 348 | } | 207 | 348 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14CalleeTypeInfoELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EE5resetEv Line | Count | Source | 202 | 2 | void reset() noexcept { | 203 | 2 | if (hasVal) { | 204 | 1 | val.~T(); | 205 | 1 | hasVal = false; | 206 | 1 | } | 207 | 2 | } |
_ZN4llvm15optional_detail15OptionalStorageIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EE5resetEv Line | Count | Source | 202 | 973 | void reset() noexcept { | 203 | 973 | if (hasVal) { | 204 | 0 | val.~T(); | 205 | 0 | hasVal = false; | 206 | 0 | } | 207 | 973 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalINS2_8SILValueEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalINS2_20DebugVarCarryingInstEEEEEEENS2_14FrozenMultiMapIjS8_NS5_6vectorISA_NS5_9allocatorISA_EEEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalIPNS2_22SingleValueInstructionEEEEEEENS2_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalIS7_EEEEEENS2_14FrozenMultiMapIS7_S7_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12SILSuccessor13pred_iteratorELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalINS2_11semanticarc7Context21ConsumingOperandStateEEEEEEENS2_14FrozenMultiMapIS7_SB_NS5_6vectorISD_NS5_9allocatorISD_EEEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang22OverloadedOperatorKindELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17TransformIteratorIPNS2_12SILSuccessorEPFPNS2_13SILBasicBlockERKS4_EEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeBaseELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference16PotentialBindingELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI19RuntimeVersionCheckLb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift12StableHasherELb1EE5resetEv Line | Count | Source | 202 | 11 | void reset() noexcept { | 203 | 11 | if (hasVal) { | 204 | 0 | val.~T(); | 205 | 0 | hasVal = false; | 206 | 0 | } | 207 | 11 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EE5resetEv Line | Count | Source | 202 | 12 | void reset() noexcept { | 203 | 12 | if (hasVal) { | 204 | 0 | val.~T(); | 205 | 0 | hasVal = false; | 206 | 0 | } | 207 | 12 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20TypeTransformContextELb1EE5resetEv _ZN4llvm15optional_detail15OptionalStorageIN5swift20ImplicitMemberActionELb1EE5resetEv Line | Count | Source | 202 | 42 | void reset() noexcept { | 203 | 42 | if (hasVal) { | 204 | 20 | val.~T(); | 205 | 20 | hasVal = false; | 206 | 20 | } | 207 | 42 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersELb1EE5resetEv Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersELb1EE5resetEv |
208 | | |
209 | 5.34M | constexpr bool has_value() const noexcept { return hasVal; }_ZNK4llvm15optional_detail15OptionalStorageINS_5AlignELb1EE9has_valueEv Line | Count | Source | 209 | 304 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIxLb1EE9has_valueEv Line | Count | Source | 209 | 7 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIjLb1EE9has_valueEv Line | Count | Source | 209 | 922k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageImLb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EE9has_valueEv Line | Count | Source | 209 | 1.91k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageItLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoINS_9StringRefEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EE9has_valueEv Line | Count | Source | 209 | 29.7k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoIPNS_8MDStringEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPNS_8MDStringELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_13DIDerivedType11PtrAuthDataELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12DIExpression12FragmentInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8Function12ProfileCountELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12RoundingModeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_2fp17ExceptionBehaviorELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift6driver3Job16ResponseFileInfoELb1EE9has_valueEv Line | Count | Source | 209 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift19TangentPropertyInfo5ErrorELb1EE9has_valueEv Line | Count | Source | 209 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EE9has_valueEv Line | Count | Source | 209 | 25 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKindELb1EE9has_valueEv Line | Count | Source | 209 | 58 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes10ConventionELb1EE9has_valueEv Line | Count | Source | 209 | 76 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EE9has_valueEv Line | Count | Source | 209 | 24 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8TypeReprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIbLb1EE9has_valueEv Line | Count | Source | 209 | 285k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift12ModuleLoader23ModuleVersionSourceKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang11SourceRangeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang15CharSourceRangeELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5clang15NullabilityKindELb1EE9has_valueEv Line | Count | Source | 209 | 82 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift10ASTExtInfoELb1EE9has_valueEv Line | Count | Source | 209 | 140k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift15SubstitutionMapELb1EE9has_valueEv Line | Count | Source | 209 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift17KnownProtocolKindELb1EE9has_valueEv Line | Count | Source | 209 | 25.4k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift20RequirementSignatureELb1EE9has_valueEv Line | Count | Source | 209 | 8.69k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift16AttributedImportINS3_14ImportedModuleEEEEELb1EE9has_valueEv Line | Count | Source | 209 | 2.56k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8ArgumentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift22ApplyIsolationCrossingELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EE9has_valueEv Line | Count | Source | 209 | 137 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EE9has_valueEv Line | Count | Source | 209 | 10.2k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EE9has_valueEv Line | Count | Source | 209 | 23.4k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift15EnumElementDeclELb1EE9has_valueEv Line | Count | Source | 209 | 3.07k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift18ReferenceOwnershipELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ProfileCounterEEELb1EE9has_valueEv Line | Count | Source | 209 | 130 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EE9has_valueEv Line | Count | Source | 209 | 56 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_15MemoryBufferRefELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_18ThreadPoolStrategyELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKcLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12DenormalMode16DenormalModeKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIyLb1EE9has_valueEv Line | Count | Source | 209 | 898 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift13SemanticsAttrELb1EE9has_valueEv Line | Count | Source | 209 | 321 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift13DeclAttributeELb1EE9has_valueEv Line | Count | Source | 209 | 15.1k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes19OpaqueReturnTypeRefELb1EE9has_valueEv Line | Count | Source | 209 | 99 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EE9has_valueEv Line | Count | Source | 209 | 84.7k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift12EnumCaseDeclELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift8CaseStmtELb1EE9has_valueEv Line | Count | Source | 209 | 151 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingState4KindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift7VarDecl10IntroducerELb1EE9has_valueEv Line | Count | Source | 209 | 699 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EE9has_valueEv Line | Count | Source | 209 | 29.7k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift13EndBorrowInstELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift13EndAccessInstELb1EE9has_valueEv Line | Count | Source | 209 | 30 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift21CopyPropagationOptionELb1EE9has_valueEv Line | Count | Source | 209 | 17 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11LangOptions23ASTVerifierOverrideKindELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift7FeatureELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_7remarks14RemarkLocationELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_9CodeModel5ModelELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKNS_8FunctionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_13FastMathFlagsELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPNS_5ValueELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIdLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIDnLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_4wasm14WasmSymbolTypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_4wasm14WasmGlobalTypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_4wasm13WasmTableTypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIhLb1EE9has_valueEv Unexecuted instantiation: swift_api_digester_main.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift3ide3api7SDKNodeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift3ide3api11SDKNodeDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang12Preprocessor16PreambleSkipInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5clang19TemplateArgumentLocEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang14SourceLocationELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang4sema21TemplateDeductionInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang12LookupResult13AmbiguityKindELb1EE9has_valueEv Unexecuted instantiation: swift_cache_tool_main.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120SwiftCacheToolActionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift20ModuleDependencyInfoELb1EE9has_valueEv Unexecuted instantiation: Index.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_19MappedLocELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16OptionalTypeKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20PrimitiveTypeMapping13ClangTypeInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider15EnumElementInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12FunctionTypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15cxx_translation19RepresentationErrorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15FrontendOptions25ClangHeaderExposeBehaviorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES5_EEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19ClangRepresentationELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider16SizeAndAlignmentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27UnavailableDeclOptimizationEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift27UnavailableDeclOptimizationELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift17StrictConcurrencyEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift17StrictConcurrencyELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18DiagnosticBehaviorELb1EE9has_valueEv Line | Count | Source | 209 | 253 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift28AccessNoteDiagnosticBehaviorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16ConcurrencyModelELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIbEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21DestroyHoistingOptionEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21CopyPropagationOptionEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift21DestroyHoistingOptionELb1EE9has_valueEv Line | Count | Source | 209 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16JITDebugArtifactEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16JITDebugArtifactELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16IRGenLLVMLTOKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16IRGenLLVMLTOKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12function_refIFvvEEELb1EE9has_valueEv DiagnosticVerifier.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnLb1EE9has_valueEv Line | Count | Source | 209 | 12 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift15LineColumnRangeELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14SourceFileKindELb1EE9has_valueEv Line | Count | Source | 209 | 11 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift26IntermoduleDepTrackingModeELb1EE9has_valueEv Line | Count | Source | 209 | 196 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13serialization6StatusELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang3cas21CompileJobCacheResult6OutputELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift6markup9ParagraphELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift6markup12ReturnsFieldELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift6markup11ThrowsFieldELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift3ide3api15SDKNodeDeclTypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api7KeyKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift3ide3api7KeyKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift3ide3api11SDKNodeKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8DeclKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8DeclKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift13AvailableAttrELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11SILAnalysis16InvalidationKindELb1EE9has_valueEv Line | Count | Source | 209 | 165 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_13AtomicRMWInst5BinOpELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen7AddressELb1EE9has_valueEv Line | Count | Source | 209 | 102 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPNS_5ValueEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7SILTypeEEELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen11ClassLayoutELb1EE9has_valueEv Line | Count | Source | 209 | 28 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPNS_8FunctionELb1EE9has_valueEv Line | Count | Source | 209 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift27RestatedObjCConformanceAttrELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift6Mangle10ASTMangler14SpecialContextELb1EE9has_valueEv Line | Count | Source | 209 | 2.58k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen10LinkEntityELb1EE9has_valueEv Line | Count | Source | 209 | 22 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZNK4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoELb1EE9has_valueEv Unexecuted instantiation: GenDiffFunc.cpp:_ZNK4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_119LinearFuncFieldInfoELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen9AtomicityELb1EE9has_valueEv Line | Count | Source | 209 | 18 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPNS_4TypeELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen12StackAddressELb1EE9has_valueEv Line | Count | Source | 209 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen19TypeEntityReferenceELb1EE9has_valueEv Line | Count | Source | 209 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionELb1EE9has_valueEv Line | Count | Source | 209 | 10 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINS_9StringRefEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPNS_9InlineAsmELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS6_12ConstantInitEEEELb1EE9has_valueEv Line | Count | Source | 209 | 29 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: GenStruct.cpp:_ZNK4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114ClangFieldInfoELb1EE9has_valueEv GenStruct.cpp:_ZNK4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_115StructFieldInfoELb1EE9has_valueEv Line | Count | Source | 209 | 17 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: GenTuple.cpp:_ZNK4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114TupleFieldInfoELb1EE9has_valueEv Unexecuted instantiation: GenValueWitness.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetails12DirectResultELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift18GenericRequirementELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIiLb1EE9has_valueEv Line | Count | Source | 209 | 55.5k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_14TargetLowering11PtrAuthInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang19ASTSourceDescriptorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen22CompletedDebugTypeInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPNS_12DIExpressionELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8TypeSizeELb1EE9has_valueEv Line | Count | Source | 209 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen13OperationCostELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EE9has_valueEv Line | Count | Source | 209 | 78 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift5irgen19NonFixedOffsetsImplELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIhEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23OriginallyDefinedInAttr13ActiveVersionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_5MachO13PackedVersionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen4SizeEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift5irgen9AlignmentELb1EE9has_valueEv Line | Count | Source | 209 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen9AlignmentEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIjEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPNS_8ConstantELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift5irgen13FixedTypeInfoELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift7RT_KindELb1EE9has_valueEv Line | Count | Source | 209 | 12.6k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_16OperandBundleUseELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift8Lowering14InitializationEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering8JumpDestELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EE9has_valueEv Line | Count | Source | 209 | 2.94k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12ProtocolDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8FuncDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18AssociatedTypeDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift7VarDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19ProtocolConformanceELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift18DifferentiableAttrELb1EE9has_valueEv Line | Count | Source | 209 | 6.06k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift14DerivativeAttrELb1EE9has_valueEv Line | Count | Source | 209 | 5.68k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift9MacroRoleELb1EE9has_valueEv Line | Count | Source | 209 | 93 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16DiverseStackBase15stable_iteratorELb1EE9has_valueEv Line | Count | Source | 209 | 1.04k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering15FunctionSectionELb1EE9has_valueEv Line | Count | Source | 209 | 18 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering18SpecializedEmitterELb1EE9has_valueEv Line | Count | Source | 209 | 79 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EE9has_valueEv Line | Count | Source | 209 | 3.62k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering10Conversion6KindTyELb1EE9has_valueEv Line | Count | Source | 209 | 10 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering10ConversionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering22ConversionPeepholeHintELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering12ManagedValueELb1EE9has_valueEv Line | Count | Source | 209 | 5 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift7ASTNodeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering20LogicalPathComponent13AccessStorageELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EE9has_valueEv Line | Count | Source | 209 | 54 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15AnyFunctionTypeEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift29SILFunctionTypeRepresentationELb1EE9has_valueEv Line | Count | Source | 209 | 358 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift10LoopRegion11SuccessorIDELb1EE9has_valueEv Line | Count | Source | 209 | 38.2k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKjLb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift16MatchingSetFlagsELb1EE9has_valueEv Line | Count | Source | 209 | 292 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13ArrayCallKindELb1EE9has_valueEv Line | Count | Source | 209 | 2.87k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntryELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift21EpilogueARCBlockStateELb1EE9has_valueEv Line | Count | Source | 209 | 43 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15SILFunctionTypeEEELb1EE9has_valueEv Line | Count | Source | 209 | 12 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16SILParameterInfoELb1EE9has_valueEv Line | Count | Source | 209 | 681 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18MarkDependenceInstELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift9ValueBase25DefiningInstructionResultELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25SILInstructionResultArrayELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EE9has_valueEv Line | Count | Source | 209 | 1.87k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EE9has_valueEv Line | Count | Source | 209 | 61 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15FixLifetimeInstELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12TryApplyInstELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift9ApplySiteELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift14AllocStackInstELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_16PartialApplyInstENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj16EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15DestroyAddrInstELb1EE9has_valueEv DefiniteInitialization.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16DIKindELb1EE9has_valueEv Line | Count | Source | 209 | 73 | constexpr bool has_value() const noexcept { return hasVal; } |
DiagnoseStaticExclusivity.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114RecordedAccessELb1EE9has_valueEv Line | Count | Source | 209 | 63 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift12TangentSpaceELb1EE9has_valueEv Line | Count | Source | 209 | 395 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16SubElementOffsetELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalINS2_8SILValueEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_7SILNodeENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS6_IPNS2_7OperandENS2_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS2_14FrozenMultiMapIS8_SE_NS_11SmallVectorISG_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift13SILBasicBlockELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20DebugVarCarryingInstELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalINS2_20DebugVarCarryingInstEEEEEEENS2_14FrozenMultiMapIjS8_NS5_6vectorISA_NS5_9allocatorISA_EEEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22SingleValueInstructionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalIPNS2_22SingleValueInstructionEEEEEEENS2_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalIS7_EEEEEENS2_14FrozenMultiMapIS7_S7_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv YieldOnceCheck.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
YieldOnceCheck.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck7BBStateELb1EE9has_valueEv Line | Count | Source | 209 | 18 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift12SILSuccessor13pred_iteratorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9StoreInstELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13SymbolicValueELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13BorrowedValueELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16DestroyValueInstELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKind7innertyELb1EE9has_valueEv Line | Count | Source | 209 | 899k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKindELb1EE9has_valueEv Line | Count | Source | 209 | 884k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKind7innertyELb1EE9has_valueEv Line | Count | Source | 209 | 345k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKindELb1EE9has_valueEv Line | Count | Source | 209 | 105k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8PassKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift14SILInstructionEEELb1EE9has_valueEv Line | Count | Source | 209 | 139 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift14SILInstructionELb1EE9has_valueEv Line | Count | Source | 209 | 128k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift10ProjectionELb1EE9has_valueEv Line | Count | Source | 209 | 105 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EE9has_valueEv Line | Count | Source | 209 | 649 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16BuiltinValueKindELb1EE9has_valueEv Line | Count | Source | 209 | 143k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift29ConcreteOpenedExistentialInfoELb1EE9has_valueEv Line | Count | Source | 209 | 649 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageI20ConcreteArgumentCopyLb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11semanticarc19OwnershipPhiOperandELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalINS2_11semanticarc7Context21ConsumingOperandStateEEEEEEENS2_14FrozenMultiMapIS7_SB_NS5_6vectorISD_NS5_9allocatorISD_EEEEE15PairToSecondEltEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift21MarkUninitializedInst4KindELb1EE9has_valueEv Line | Count | Source | 209 | 15 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift13CopyValueInstELb1EE9has_valueEv Line | Count | Source | 209 | 11 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16DeallocStackInstELb1EE9has_valueEv RedundantOverflowCheckRemoval.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationELb1EE9has_valueEv Line | Count | Source | 209 | 16 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEELb1EE9has_valueEv Line | Count | Source | 209 | 64.8k | constexpr bool has_value() const noexcept { return hasVal; } |
SILMem2Reg.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120StorageStateTrackingINS2_10LiveValuesEEELb1EE9has_valueEv Line | Count | Source | 209 | 144 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift15StoreBorrowInstELb1EE9has_valueEv Line | Count | Source | 209 | 28 | constexpr bool has_value() const noexcept { return hasVal; } |
SILMem2Reg.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_110LiveValuesELb1EE9has_valueEv Line | Count | Source | 209 | 27 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift22LoadOwnershipQualifierELb1EE9has_valueEv Line | Count | Source | 209 | 2.13k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13LoadOperationELb1EE9has_valueEv Line | Count | Source | 209 | 77 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageI17WellKnownFunctionLb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN21LexicalDestroyFolding5MatchELb1EE9has_valueEv SILInliner.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114BeginApplySiteELb1EE9has_valueEv Line | Count | Source | 209 | 820 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10ModuleDeclELb1EE9has_valueEv Unexecuted instantiation: APIDigesterData.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115DiffItemKeyKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift3ide3api15APIDiffItemKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api11SDKNodeKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift3ide3api14NodeAnnotationELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift3ide3api13SpecialCaseIdELb1EE9has_valueEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115ContextOverride8OverrideELb1EE9has_valueEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113IndentContextELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift5TokenELb1EE9has_valueEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112TrailingInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift3ide17ResolvedRangeInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift10AccessKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift7LocatedIPNS2_12ArgumentListEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift6driver6Driver10DriverKindELb1EE9has_valueEv Line | Count | Source | 209 | 5 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift6driver20IncrementalJobAction9InputInfo6StatusELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo7LTOKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo11MSVCRuntimeELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift7options2IDELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver6Driver10DriverKindEEELb1EE9has_valueEv Line | Count | Source | 209 | 85 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo7LTOKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11NullablePtrINS2_25fine_grained_dependencies18ModuleDepGraphNodeEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift15RequirementKindELb1EE9has_valueEv Line | Count | Source | 209 | 1.46k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageI20LayoutConstraintKindLb1EE9has_valueEv Line | Count | Source | 209 | 14 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift12ReadImplKindELb1EE9has_valueEv Line | Count | Source | 209 | 374 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13WriteImplKindELb1EE9has_valueEv Line | Count | Source | 209 | 374 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift17ReadWriteImplKindELb1EE9has_valueEv Line | Count | Source | 209 | 374 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift19DefaultArgumentKindELb1EE9has_valueEv Line | Count | Source | 209 | 4.15k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16SILCoroutineKindELb1EE9has_valueEv Line | Count | Source | 209 | 267 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift19ParameterConventionELb1EE9has_valueEv Line | Count | Source | 209 | 817 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift29SILParameterDifferentiabilityELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift16ResultConventionELb1EE9has_valueEv Line | Count | Source | 209 | 220 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift26SILResultDifferentiabilityELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23StableSerializationPath12ExternalPath13ComponentKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang14IdentifierInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang11ConceptDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang7TagDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang20TemplateTypeParmDeclELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift17StringLiteralInst8EncodingELb1EE9has_valueEv Line | Count | Source | 209 | 488 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift10ImportKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11CommentInfoELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift10ModuleDecl16ImportFilterKindELb1EE9has_valueEv Line | Count | Source | 209 | 213 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11LibraryKindELb1EE9has_valueEv Line | Count | Source | 209 | 71 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14ImportedModuleELb1EE9has_valueEv Line | Count | Source | 209 | 438 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23ExpandedMacroDefinitionELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_18PointerEmbeddedIntIjLi31EEELb1EE9has_valueEv Line | Count | Source | 209 | 9.35k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang11ConceptDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang14IdentifierInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang12TemplateNameELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang7TagDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang20TemplateTypeParmDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift4DeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang4TypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift11DeclContextELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift18GenericEnvironmentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15PackConformanceELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift9SILLayoutELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang13CXXRecordDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang13CXXRecordDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang4DeclELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang4DeclELb1EE9has_valueEv Line | Count | Source | 209 | 868 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang4ExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang4ExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang12FunctionDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang12FunctionDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang9NamedDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang9NamedDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang18NamespaceAliasDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang18NamespaceAliasDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang13NamespaceDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang13NamespaceDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang16ObjCProtocolDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang16ObjCProtocolDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang17ObjCTypeParamDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang17ObjCTypeParamDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang4StmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang4StmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang12TemplateDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang12TemplateDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang24TemplateTemplateParmDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang24TemplateTemplateParmDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang15UsingShadowDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang15UsingShadowDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5clang9ValueDeclELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang9ValueDeclELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift10SILLinkageELb1EE9has_valueEv Line | Count | Source | 209 | 454 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift11EffectsAttrELb1EE9has_valueEv Line | Count | Source | 209 | 148 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift10ExposeAttrELb1EE9has_valueEv Line | Count | Source | 209 | 174 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift7CanTypeELb1EE9has_valueEv Line | Count | Source | 209 | 207 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EE9has_valueEv Line | Count | Source | 209 | 5.36k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EE9has_valueEv Line | Count | Source | 209 | 6.57k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: SILFunctionType.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift14AnyFunctionRefELb1EE9has_valueEv Line | Count | Source | 209 | 505 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift24DifferentiationThunkKindELb1EE9has_valueEv Line | Count | Source | 209 | 40 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EE9has_valueEv Line | Count | Source | 209 | 3.96k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKind7innertyELb1EE9has_valueEv Line | Count | Source | 209 | 70.8k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKindELb1EE9has_valueEv Line | Count | Source | 209 | 69.2k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift20SILModuleConventionsELb1EE9has_valueEv Line | Count | Source | 209 | 954 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: SILProfiler.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift16SILSymbolVisitor11DynamicKindELb1EE9has_valueEv Line | Count | Source | 209 | 48 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13OwnershipKind7innertyELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13OwnershipKind7innertyEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13CapturedValueELb1EE9has_valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_4clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EE9has_valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_4clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift17TransformIteratorIPNS2_12SILSuccessorEPFPNS2_13SILBasicBlockERKS4_EEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift20AccessRepresentation4KindELb1EE9has_valueEv Line | Count | Source | 209 | 8.30k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift17AccessStorageCastELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift13AccessStorageELb1EE9has_valueEv Line | Count | Source | 209 | 8.80k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift10BranchInstELb1EE9has_valueEv Line | Count | Source | 209 | 32 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: PrunedLiveness.cpp:_ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_2clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EE9has_valueEv Unexecuted instantiation: PrunedLiveness.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_2clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift7OperandEEELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift7OperandELb1EE9has_valueEv Line | Count | Source | 209 | 351 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE9has_valueEv Line | Count | Source | 209 | 476 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift7OperandEEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift13SILBasicBlockEEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EE9has_valueEv Line | Count | Source | 209 | 5.28k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4test12BoolArgumentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4test12UIntArgumentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4test8ArgumentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJyxNS_9StringRefEEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJPNS2_11SILFunctionEPNS2_13SILBasicBlockEEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4test14StringArgumentELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12AccessorKindEEELb1EE9has_valueEv Line | Count | Source | 209 | 84 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift18SILInstructionKindEEELb1EE9has_valueEv Line | Count | Source | 209 | 5.80k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23OpenedExistentialAccessEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23OpenedExistentialAccessELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19CastConsumptionKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23StoreOwnershipQualifierELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift24AssignOwnershipQualifierELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19AssignByWrapperInst4ModeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16AssignOrInitInst4ModeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift9SILParser19UnresolvedValueNameELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18SILInstructionKindELb1EE9has_valueEv Line | Count | Source | 209 | 27 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift10SILLinkageEEELb1EE9has_valueEv Line | Count | Source | 209 | 28 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8coverage7CounterELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedReferenceBindingInst4KindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22LoadOwnershipQualifierEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift19CastConsumptionKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23StoreOwnershipQualifierEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift24AssignOwnershipQualifierEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystem15TypeMatchResultELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EE9has_valueEv Line | Count | Source | 209 | 609 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_12PointerUnionIJPN5swift4StmtEPNS3_4DeclEEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift20UnavailabilityReasonELb1EE9has_valueEv Line | Count | Source | 209 | 405 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIN5swift20StmtConditionElementEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift13CaseLabelItemELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8ExprKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentELb1EE9has_valueEv Unexecuted instantiation: CSSyntacticElement.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_123SyntacticElementContextELb1EE9has_valueEv Unexecuted instantiation: CSGen.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeELb1EE9has_valueEv Line | Count | Source | 209 | 92 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: CSRanking.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121TypeBindingsToCompareELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeELb1EE9has_valueEv Line | Count | Source | 209 | 20 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8TypeBaseELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyELb1EE9has_valueEv Line | Count | Source | 209 | 12 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints25SingleValueStmtBranchKindELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift21KnownFoundationEntityELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift15AnyFunctionType5ParamELb1EE9has_valueEv Line | Count | Source | 209 | 329 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17CompletionArgInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints14ConstraintKindELb1EE9has_valueEv Line | Count | Source | 209 | 4.24k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints18MemberLookupResult14UnviableReasonELb1EE9has_valueEv Line | Count | Source | 209 | 63 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift10IdentifierEEELb1EE9has_valueEv Line | Count | Source | 209 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17CaseLabelItemInfoELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints19TypeVariableBindingELb1EE9has_valueEv Line | Count | Source | 209 | 86 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints18ConjunctionElementELb1EE9has_valueEv CSStep.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZN5swift11constraints13ComponentStep4takeEbE8StepKindLb1EE9has_valueEv Line | Count | Source | 209 | 775 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints25ConversionRestrictionKindELb1EE9has_valueEv Line | Count | Source | 209 | 638 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints11FixBehaviorELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints20FunctionArgApplyInfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12TupleElementELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeEEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementELb1EE9has_valueEv Unexecuted instantiation: CSDiagnostics.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints23TrailingClosureMatchingELb1EE9has_valueEv Line | Count | Source | 209 | 3.07k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchELb1EE9has_valueEv Line | Count | Source | 209 | 2.95k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentELb1EE9has_valueEv Line | Count | Source | 209 | 1.22k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionELb1EE9has_valueEv Line | Count | Source | 209 | 4.38k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptELb1EE9has_valueEv Line | Count | Source | 209 | 2.95k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberELb1EE9has_valueEv Line | Count | Source | 209 | 3.01k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableELb1EE9has_valueEv Line | Count | Source | 209 | 2.95k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints18ContextualTypeInfoELb1EE9has_valueEv Line | Count | Source | 209 | 695 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints7FixKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints16IUOReferenceKindELb1EE9has_valueEv Line | Count | Source | 209 | 1.30k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EE9has_valueEv Line | Count | Source | 209 | 5.39k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints9ScoreKindELb1EE9has_valueEv Line | Count | Source | 209 | 1.44k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamELb1EE9has_valueEv Line | Count | Source | 209 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints14OverloadChoiceELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementELb1EE9has_valueEv Line | Count | Source | 209 | 4.29k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericELb1EE9has_valueEv Line | Count | Source | 209 | 14.4k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints23AppliedBuilderTransformELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference16PotentialBindingELb1EE9has_valueEv Line | Count | Source | 209 | 1.12k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageI19RuntimeVersionCheckLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11DeclNameRefELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift21ContextualTypePurposeELb1EE9has_valueEv Line | Count | Source | 209 | 224 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift26MagicIdentifierLiteralExpr4KindELb1EE9has_valueEv Line | Count | Source | 209 | 12 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23SyntacticTypoCorrectionELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift19ExportabilityReasonELb1EE9has_valueEv Line | Count | Source | 209 | 147 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageI35AbstractFunctionDeclLookupErrorKindLb1EE9has_valueEv Line | Count | Source | 209 | 10 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift4DiagIJEEELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4DiagIJbNS2_4TypeEEEELb1EE9has_valueEv Unexecuted instantiation: TypeCheckAvailability.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ReplacementDeclKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23CompletionContextFinder8FallbackELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift13SendableCheckELb1EE9has_valueEv Line | Count | Source | 209 | 30 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift12VarRefUseEnvELb1EE9has_valueEv TypeCheckConcurrency.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PartialApplyThunkInfoELb1EE9has_valueEv Line | Count | Source | 209 | 130 | constexpr bool has_value() const noexcept { return hasVal; } |
TypeCheckConcurrency.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126MemberIsolationPropagationELb1EE9has_valueEv Line | Count | Source | 209 | 909 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift22DispatchQueueOperationELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22DispatchQueueOperationEEELb1EE9has_valueEv Line | Count | Source | 209 | 36 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterELb1EE9has_valueEv TypeCheckDecl.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121ImplicitlyFinalReasonELb1EE9has_valueEv Line | Count | Source | 209 | 22 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift22AutomaticEnumValueKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift10ObjCReasonELb1EE9has_valueEv Line | Count | Source | 209 | 323 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4DiagIJjNS2_8DeclNameENS2_12ObjCSelectorEEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18StaticSpellingKindELb1EE9has_valueEv Line | Count | Source | 209 | 2.89k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift7LocatedINS2_18StaticSpellingKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ParamDeclELb1EE9has_valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EE9has_valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_17ContextELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift10EffectKindELb1EE9has_valueEv Line | Count | Source | 209 | 204 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16BuiltinMacroKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift23ExternalMacroDefinitionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift11SourceRangeELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift15CheckedCastKindELb1EE9has_valueEv Line | Count | Source | 209 | 23 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14AutoDiffConfigELb1EE9has_valueEv Line | Count | Source | 209 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11AccessScopeELb1EE9has_valueEv Line | Count | Source | 209 | 597 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeES4_EEELb1EE9has_valueEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS2_9ClassDeclEE16UnstableNameKindLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8DeclNameELb1EE9has_valueEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift26KnownDerivableProtocolKindELb1EE9has_valueEv Line | Count | Source | 209 | 223 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElementELb1EE9has_valueEv Line | Count | Source | 209 | 80.6k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EE9has_valueEv Line | Count | Source | 209 | 223k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19AbstractTypeWitnessELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19TypeWitnessConflictELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25RegexCaptureStructureCodeELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift14TypeResolutionELb1EE9has_valueEv Line | Count | Source | 209 | 103 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperMutabilityELb1EE9has_valueEv Line | Count | Source | 209 | 91 | constexpr bool has_value() const noexcept { return hasVal; } |
TypeCheckStorage.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessELb1EE9has_valueEv Line | Count | Source | 209 | 71 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift29SILFunctionTypeRepresentationEEELb1EE9has_valueEv Line | Count | Source | 209 | 299 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift26FunctionTypeRepresentationEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift26FunctionTypeRepresentationELb1EE9has_valueEv Line | Count | Source | 209 | 54 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift19TypeResolutionStageELb1EE9has_valueEv Line | Count | Source | 209 | 52 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16FunctionTypeReprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13SanitizerKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13SanitizerKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_24SanitizerCoverageOptions4TypeELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5clang6ModuleELb1EE9has_valueEv Line | Count | Source | 209 | 24 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ImportedModuleEEELb1EE9has_valueEv Line | Count | Source | 209 | 203 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EE9has_valueEv Line | Count | Source | 209 | 246 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5clang8QualTypeELb1EE9has_valueEv Line | Count | Source | 209 | 18 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConvention4InfoELb1EE9has_valueEv Line | Count | Source | 209 | 154 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift30ObjCInterfaceAndImplementationELb1EE9has_valueEv Line | Count | Source | 209 | 33 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift12DeclBaseNameELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EE9has_valueEv Line | Count | Source | 209 | 1.05k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift8importer12ImportedNameELb1EE9has_valueEv Line | Count | Source | 209 | 47 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang13SwiftAttrAttrELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift12PlatformKindELb1EE9has_valueEv Line | Count | Source | 209 | 335 | constexpr bool has_value() const noexcept { return hasVal; } |
ImportDecl.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112AccessorInfoELb1EE9has_valueEv Line | Count | Source | 209 | 12 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12PlatformKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4KindELb1EE9has_valueEv ImportName.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_116AnySwiftNameAttrELb1EE9has_valueEv Line | Count | Source | 209 | 710 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: ImportType.cpp:_ZNK4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112ImportResultELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18MappedTypeNameKindELb1EE9has_valueEv Line | Count | Source | 209 | 15 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5clang8EnumDeclELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift13ClangImporter14Implementation25ImportParameterTypeResultELb1EE9has_valueEv Line | Count | Source | 209 | 18 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4InfoELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift21EffectiveClangContextELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift3tokELb1EE9has_valueEv Line | Count | Source | 209 | 768 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift14SpecializeAttr18SpecializationKindELb1EE9has_valueEv Unexecuted instantiation: ParseDecl.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseStorageRestrictionsAttributeENS2_9SourceLocES4_E10AccessKindLb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift10InlineKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16OptimizationModeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15ExclusivityAttr4ModeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15NonSendableKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS_9StringRefES4_EEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift13AssociativityELb1EE9has_valueEv Line | Count | Source | 209 | 84 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: ParseDecl.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseExtendedAvailabilitySpecListENS2_9SourceLocES4_NS_9StringRefEE3$_4Lb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift21DifferentiabilityKindELb1EE9has_valueEv Line | Count | Source | 209 | 2.68k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift11AccessLevelEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9MacroRoleEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27MacroIntroducedDeclNameKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift27MacroIntroducedDeclNameKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13AssociativityEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift21EditorPlaceholderDataELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20AvailabilitySpecKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21PlatformConditionKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift21PlatformConditionKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15TuplePatternEltELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift12StableHasherELb1EE9has_valueEv Line | Count | Source | 209 | 8.35k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift5TokenEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7ASTNodeEEELb1EE9has_valueEv Line | Count | Source | 209 | 131 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingStateELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift22MetatypeRepresentationELb1EE9has_valueEv Line | Count | Source | 209 | 12.5k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EE9has_valueEv Line | Count | Source | 209 | 10.0k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25ForeignRepresentationInfoELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift38PropertyWrapperSynthesizedPropertyKindELb1EE9has_valueEv Line | Count | Source | 209 | 48 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21KnownFoundationEntityEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang7CFGStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5clang23HeaderIncludeFormatKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle18ImplFunctionResultINS2_4TypeEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle26ImplMetatypeRepresentationELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle10ASTBuilder17ForeignModuleKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift13ClangTypeKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle23ImplParameterConventionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle30ImplParameterDifferentiabilityELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle20ImplResultConventionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle27ImplResultDifferentiabilityELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalI20LayoutConstraintKindEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift11RequirementEEELb1EE9has_valueEv Line | Count | Source | 209 | 713 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIcLb1EE9has_valueEv Line | Count | Source | 209 | 2.14k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift14SpecializeAttrELb1EE9has_valueEv Line | Count | Source | 209 | 343 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift20TypeTransformContextELb1EE9has_valueEv Line | Count | Source | 209 | 719 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift23OriginallyDefinedInAttrELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift23SynthesizedProtocolAttrELb1EE9has_valueEv Line | Count | Source | 209 | 5 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EE9has_valueEv Line | Count | Source | 209 | 1.29k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift15CharSourceRangeELb1EE9has_valueEv Line | Count | Source | 209 | 33.4k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ErrorExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift14NilLiteralExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18BooleanLiteralExprELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift18IntegerLiteralExprELb1EE9has_valueEv Line | Count | Source | 209 | 53 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16FloatLiteralExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift17StringLiteralExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift26MagicIdentifierLiteralExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift29InterpolatedStringLiteralExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16RegexLiteralExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift17ObjectLiteralExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21DiscardAssignmentExprELb1EE9has_valueEv Line | Count | Source | 209 | 6 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift11DeclRefExprELb1EE9has_valueEv Line | Count | Source | 209 | 266 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12SuperRefExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8TypeExprELb1EE9has_valueEv Line | Count | Source | 209 | 58 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift27OtherConstructorDeclRefExprELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift24DotSyntaxBaseIgnoredExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21OverloadedDeclRefExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21UnresolvedDeclRefExprELb1EE9has_valueEv Line | Count | Source | 209 | 188 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift13MemberRefExprELb1EE9has_valueEv Line | Count | Source | 209 | 109 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift13SubscriptExprELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift20DynamicMemberRefExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift20DynamicSubscriptExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift24UnresolvedSpecializeExprELb1EE9has_valueEv Line | Count | Source | 209 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift20UnresolvedMemberExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift17UnresolvedDotExprELb1EE9has_valueEv Line | Count | Source | 209 | 13 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift12SequenceExprELb1EE9has_valueEv Line | Count | Source | 209 | 38 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ParenExprELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11DotSelfExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9AwaitExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10BorrowExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift31UnresolvedMemberChainResultExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8CopyExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11ConsumeExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift7TryExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12ForceTryExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15OptionalTryExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9TupleExprELb1EE9has_valueEv Line | Count | Source | 209 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ArrayExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift14DictionaryExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22KeyPathApplicationExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16TupleElementExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15CaptureListExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11ClosureExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15AutoClosureExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9InOutExprELb1EE9has_valueEv Line | Count | Source | 209 | 48 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19VarargExpansionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift17PackExpansionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15PackElementExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19MaterializePackExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15DynamicTypeExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift27RebindSelfInConstructorExprELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15OpaqueValueExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift35PropertyWrapperValuePlaceholderExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift26AppliedPropertyWrapperExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19DefaultArgumentExprELb1EE9has_valueEv Line | Count | Source | 209 | 21 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16BindOptionalExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22OptionalEvaluationExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift14ForceValueExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19OpenExistentialExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift28MakeTemporarilyEscapableExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8CallExprELb1EE9has_valueEv Line | Count | Source | 209 | 96 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15PrefixUnaryExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16PostfixUnaryExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10BinaryExprELb1EE9has_valueEv Line | Count | Source | 209 | 17 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift17DotSyntaxCallExprELb1EE9has_valueEv Line | Count | Source | 209 | 33 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift22ConstructorRefCallExprELb1EE9has_valueEv Line | Count | Source | 209 | 23 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift8LoadExprELb1EE9has_valueEv Line | Count | Source | 209 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21ABISafeConversionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift20DestructureTupleExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift28UnresolvedTypeConversionExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22FunctionConversionExprELb1EE9has_valueEv Line | Count | Source | 209 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift31CovariantFunctionConversionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift29CovariantReturnConversionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22MetatypeConversionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift30CollectionUpcastConversionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11ErasureExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22AnyHashableErasureExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16BridgeToObjCExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18BridgeFromObjCExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift29ConditionalBridgeFromObjCExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift17DerivedToBaseExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift20ArchetypeToSuperExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22InjectIntoOptionalExprELb1EE9has_valueEv Line | Count | Source | 209 | 5 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift25ClassMetatypeToObjectExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift31ExistentialMetatypeToObjectExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift28ProtocolMetatypeToObjectExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18InOutToPointerExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18ArrayToPointerExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19StringToPointerExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift20PointerToPointerExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift27ForeignObjectConversionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift23UnevaluatedInstanceExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift22UnderlyingToOpaqueExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift26DifferentiableFunctionExprELb1EE9has_valueEv Line | Count | Source | 209 | 3 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18LinearFunctionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift41DifferentiableFunctionExtractOriginalExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift33LinearFunctionExtractOriginalExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift34LinearToDifferentiableFunctionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21ForcedCheckedCastExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift26ConditionalCheckedCastExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift6IsExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10CoerceExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ArrowExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11TernaryExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift14EnumIsCaseExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10AssignExprELb1EE9has_valueEv Line | Count | Source | 209 | 40 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18CodeCompletionExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21UnresolvedPatternExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19LazyInitializerExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift21EditorPlaceholderExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift16ObjCSelectorExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11KeyPathExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19SingleValueStmtExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift14KeyPathDotExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10OneWayExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift7TapExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12TypeJoinExprELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18MacroExpansionExprELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift4StmtELb1EE9has_valueEv Line | Count | Source | 209 | 419 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift10ReturnStmtELb1EE9has_valueEv Line | Count | Source | 209 | 137 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8ThenStmtELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9YieldStmtELb1EE9has_valueEv Line | Count | Source | 209 | 25 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9DeferStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift6IfStmtELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9GuardStmtELb1EE9has_valueEv Line | Count | Source | 209 | 2 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9WhileStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift6DoStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11DoCatchStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15RepeatWhileStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11ForEachStmtELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift10SwitchStmtELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9BreakStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12ContinueStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15FallthroughStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift8FailStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ThrowStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11DiscardStmtELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift15PoundAssertStmtELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift12ParenPatternELb1EE9has_valueEv Line | Count | Source | 209 | 10 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift7PatternELb1EE9has_valueEv Line | Count | Source | 209 | 1.94k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift12TuplePatternELb1EE9has_valueEv Line | Count | Source | 209 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift10AnyPatternELb1EE9has_valueEv Line | Count | Source | 209 | 4 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift12TypedPatternELb1EE9has_valueEv Line | Count | Source | 209 | 855 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift14BindingPatternELb1EE9has_valueEv Line | Count | Source | 209 | 8 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9IsPatternELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18EnumElementPatternELb1EE9has_valueEv Line | Count | Source | 209 | 19 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift19OptionalSomePatternELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11BoolPatternELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11ExprPatternELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EE9has_valueEv Line | Count | Source | 209 | 599 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift12TypeAttrKindELb1EE9has_valueEv Line | Count | Source | 209 | 6.30k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift12DeclAttrKindELb1EE9has_valueEv Line | Count | Source | 209 | 34.9k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift16GenericSignatureELb1EE9has_valueEv Line | Count | Source | 209 | 44.7k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift11IndexSubsetELb1EE9has_valueEv Line | Count | Source | 209 | 190 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift15NonSendableAttrELb1EE9has_valueEv Line | Count | Source | 209 | 5 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKind7innertyELb1EE9has_valueEv Line | Count | Source | 209 | 12 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift41NormalDifferentiableFunctionTypeComponent7innertyELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift41LinearDifferentiableFunctionTypeComponent7innertyELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift36DifferentiabilityWitnessFunctionKind7innertyELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEELb1EE9has_valueEv Line | Count | Source | 209 | 48 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EE9has_valueEv Line | Count | Source | 209 | 6.54k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_14AtomicOrderingELb1EE9has_valueEv ClangTypeConverter.cpp:_ZNK4llvm15optional_detail15OptionalStorageIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS2_16BoundGenericTypeEE10StructKindLb1EE9has_valueEv Line | Count | Source | 209 | 64 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift20ImplicitMemberActionELb1EE9has_valueEv Line | Count | Source | 209 | 242 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14ParamSpecifierELb1EE9has_valueEv Line | Count | Source | 209 | 15.6k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift11InitializerELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift18ExternalSourceLocsELb1EE9has_valueEv Line | Count | Source | 209 | 216 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift16GenericParamListELb1EE9has_valueEv Line | Count | Source | 209 | 29.2k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift15NominalTypeDeclELb1EE9has_valueEv Line | Count | Source | 209 | 25 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift19PatternBindingEntryELb1EE9has_valueEv Line | Count | Source | 209 | 46 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift12AccessorDeclELb1EE9has_valueEv Line | Count | Source | 209 | 73 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift19OpaqueReadOwnershipELb1EE9has_valueEv Line | Count | Source | 209 | 615 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift14DestructorDeclELb1EE9has_valueEv Line | Count | Source | 209 | 247 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift12ProtocolDeclEEELb1EE9has_valueEv Line | Count | Source | 209 | 3.82k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift9ValueDeclEEELb1EE9has_valueEv Line | Count | Source | 209 | 124 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift15StorageImplInfoELb1EE9has_valueEv Line | Count | Source | 209 | 2.68k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift12NamedPatternELb1EE9has_valueEv Line | Count | Source | 209 | 938 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift4ExprELb1EE9has_valueEv Line | Count | Source | 209 | 1.05k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift9BraceStmtELb1EE9has_valueEv Line | Count | Source | 209 | 545 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift14SelfAccessKindELb1EE9has_valueEv Line | Count | Source | 209 | 10.8k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageINSt3__15tupleIJEEELb1EE9has_valueEv Line | Count | Source | 209 | 276 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift13MacroRoleAttrELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift4DeclELb1EE9has_valueEv Line | Count | Source | 209 | 327 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift14DiagnosticInfoELb1EE9has_valueEv Line | Count | Source | 209 | 45 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift6markup10ParamFieldELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPKN5swift6markup20LocalizationKeyFieldELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift10RawCommentELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies8NodeKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies10DeclAspectELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EE9has_valueEv Line | Count | Source | 209 | 101k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift18ArtificialMainKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift16AttributedImportINS2_14ImportedModuleEEELb1EE9has_valueEv Line | Count | Source | 209 | 33.5k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift10CustomAttrELb1EE9has_valueEv Line | Count | Source | 209 | 5.20k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift23SourceFileParsingResultELb1EE9has_valueEv Line | Count | Source | 209 | 131 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPKN5swift20SPIAccessControlAttrELb1EE9has_valueEv Line | Count | Source | 209 | 646 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyKindELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIPN5swift9ClassDeclELb1EE9has_valueEv Line | Count | Source | 209 | 12.8k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift22ExprPatternMatchResultELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift18TypeWitnessAndDeclELb1EE9has_valueEv Line | Count | Source | 209 | 1 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift7WitnessELb1EE9has_valueEv Line | Count | Source | 209 | 108 | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIPN5swift9rewriting11PropertyBagELb1EE9has_valueEv Line | Count | Source | 209 | 62.8k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9rewriting10DebugFlagsEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift9rewriting10DebugFlagsELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift9rewriting4TermEEELb1EE9has_valueEv Line | Count | Source | 209 | 1.54k | constexpr bool has_value() const noexcept { return hasVal; } |
_ZNK4llvm15optional_detail15OptionalStorageIN5swift22ProtocolConformanceRefELb1EE9has_valueEv Line | Count | Source | 209 | 471 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift19CanGenericSignatureELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift25PrecedenceGroupDescriptor13PathDirectionELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift10file_types2IDELb1EE9has_valueEv Line | Count | Source | 209 | 4.88k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift7FeatureEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageINS_8OptionalINS_9StringRefEEELb1EE9has_valueEv Line | Count | Source | 209 | 3.92k | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_8ArrayRefINS_9StringRefEEELb1EE9has_valueEv _ZNK4llvm15optional_detail15OptionalStorageIN5swift19GeneratedSourceInfoELb1EE9has_valueEv Line | Count | Source | 209 | 607 | constexpr bool has_value() const noexcept { return hasVal; } |
Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift16BlockListKeyKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift15BlockListActionELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle4Node4KindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle16ValueWitnessKindELb1EE9has_valueEv Unexecuted instantiation: _ZNK4llvm15optional_detail15OptionalStorageIN5swift8Demangle10DirectnessELb1EE9has_valueEv |
210 | | LLVM_DEPRECATED("Use has_value instead.", "has_value") |
211 | | constexpr bool hasValue() const noexcept { |
212 | | return hasVal; |
213 | | } |
214 | | |
215 | 2.54M | T &value() &noexcept { |
216 | 2.54M | assert(hasVal); |
217 | 0 | return val; |
218 | 2.54M | } _ZNR4llvm15optional_detail15OptionalStorageINS_5AlignELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKcLb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIjLb1EE5valueEv Line | Count | Source | 215 | 307k | T &value() &noexcept { | 216 | 307k | assert(hasVal); | 217 | 0 | return val; | 218 | 307k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12DenormalMode16DenormalModeKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageItLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoINS_9StringRefEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_13DIDerivedType11PtrAuthDataELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12DIExpression12FragmentInfoELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIyLb1EE5valueEv Line | Count | Source | 215 | 730 | T &value() &noexcept { | 216 | 730 | assert(hasVal); | 217 | 0 | return val; | 218 | 730 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12RoundingModeELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EE5valueEv Line | Count | Source | 215 | 4.28k | T &value() &noexcept { | 216 | 4.28k | assert(hasVal); | 217 | 0 | return val; | 218 | 4.28k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_2fp17ExceptionBehaviorELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EE5valueEv Line | Count | Source | 215 | 14 | T &value() &noexcept { | 216 | 14 | assert(hasVal); | 217 | 0 | return val; | 218 | 14 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPKN5swift13SemanticsAttrELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5clang15NullabilityKindELb1EE5valueEv Line | Count | Source | 215 | 17 | T &value() &noexcept { | 216 | 17 | assert(hasVal); | 217 | 0 | return val; | 218 | 17 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift10ASTExtInfoELb1EE5valueEv Line | Count | Source | 215 | 201k | T &value() &noexcept { | 216 | 201k | assert(hasVal); | 217 | 0 | return val; | 218 | 201k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift15EnumElementDeclELb1EE5valueEv Line | Count | Source | 215 | 461 | T &value() &noexcept { | 216 | 461 | assert(hasVal); | 217 | 0 | return val; | 218 | 461 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift17KnownProtocolKindELb1EE5valueEv Line | Count | Source | 215 | 19.9k | T &value() &noexcept { | 216 | 19.9k | assert(hasVal); | 217 | 0 | return val; | 218 | 19.9k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8ArgumentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ApplyIsolationCrossingELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIbLb1EE5valueEv Line | Count | Source | 215 | 131k | T &value() &noexcept { | 216 | 131k | assert(hasVal); | 217 | 0 | return val; | 218 | 131k | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EE5valueEv Line | Count | Source | 215 | 119 | T &value() &noexcept { | 216 | 119 | assert(hasVal); | 217 | 0 | return val; | 218 | 119 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingState4KindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift7VarDecl10IntroducerELb1EE5valueEv Line | Count | Source | 215 | 473 | T &value() &noexcept { | 216 | 473 | assert(hasVal); | 217 | 0 | return val; | 218 | 473 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift11RequirementEEELb1EE5valueEv Line | Count | Source | 215 | 690 | T &value() &noexcept { | 216 | 690 | assert(hasVal); | 217 | 0 | return val; | 218 | 690 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ProfileCounterEEELb1EE5valueEv Line | Count | Source | 215 | 19 | T &value() &noexcept { | 216 | 19 | assert(hasVal); | 217 | 0 | return val; | 218 | 19 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKindELb1EE5valueEv Line | Count | Source | 215 | 39 | T &value() &noexcept { | 216 | 39 | assert(hasVal); | 217 | 0 | return val; | 218 | 39 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15SILArgumentKindELb1EE5valueEv Line | Count | Source | 215 | 27.1k | T &value() &noexcept { | 216 | 27.1k | assert(hasVal); | 217 | 0 | return val; | 218 | 27.1k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_18ThreadPoolStrategyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11LangOptions23ASTVerifierOverrideKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift7FeatureELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21CopyPropagationOptionELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EE5valueEv Line | Count | Source | 215 | 257 | T &value() &noexcept { | 216 | 257 | assert(hasVal); | 217 | 0 | return val; | 218 | 257 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EE5valueEv Line | Count | Source | 215 | 14.2k | T &value() &noexcept { | 216 | 14.2k | assert(hasVal); | 217 | 0 | return val; | 218 | 14.2k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_9CodeModel5ModelELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKNS_8FunctionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_14MemoryLocationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_13FastMathFlagsELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIxLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIdLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIDnLb1EE5valueEv Unexecuted instantiation: swift_api_digester_main.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift3ide3api7SDKNodeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_15MemoryBufferRefELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang12LookupResult13AmbiguityKindELb1EE5valueEv Unexecuted instantiation: swift_cache_tool_main.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120SwiftCacheToolActionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EE5valueEv Line | Count | Source | 215 | 152k | T &value() &noexcept { | 216 | 152k | assert(hasVal); | 217 | 0 | return val; | 218 | 152k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift20ModuleDependencyInfoELb1EE5valueEv Unexecuted instantiation: Index.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_19MappedLocELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16OptionalTypeKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20PrimitiveTypeMapping13ClangTypeInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider15EnumElementInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12FunctionTypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15cxx_translation19RepresentationErrorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES5_EEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19ClangRepresentationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20IRABIDetailsProvider16SizeAndAlignmentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageImLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27UnavailableDeclOptimizationEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift27UnavailableDeclOptimizationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift17StrictConcurrencyEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift17StrictConcurrencyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift28AccessNoteDiagnosticBehaviorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16ConcurrencyModelELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIbEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21DestroyHoistingOptionEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21CopyPropagationOptionEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21DestroyHoistingOptionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16JITDebugArtifactEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16JITDebugArtifactELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16IRGenLLVMLTOKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16IRGenLLVMLTOKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12function_refIFvvEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift26IntermoduleDepTrackingModeELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_6BLAKE3ELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift14SourceFileKindELb1EE5valueEv Line | Count | Source | 215 | 11 | T &value() &noexcept { | 216 | 11 | assert(hasVal); | 217 | 0 | return val; | 218 | 11 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13serialization6StatusELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang3cas21CompileJobCacheResult6OutputELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api7KeyKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift3ide3api15SDKNodeDeclTypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift3ide3api11SDKNodeDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3ide3api7KeyKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3ide3api11SDKNodeKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EE5valueEv Line | Count | Source | 215 | 563 | T &value() &noexcept { | 216 | 563 | assert(hasVal); | 217 | 0 | return val; | 218 | 563 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8DeclKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8DeclKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12EnumCaseDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift13AvailableAttrELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11SILAnalysis16InvalidationKindELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_13AtomicRMWInst5BinOpELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPNS_5ValueELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen7AddressELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPNS_5ValueEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7SILTypeEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPNS_8FunctionELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift27RestatedObjCConformanceAttrELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen11ClassLayoutELb1EE5valueEv Line | Count | Source | 215 | 24 | T &value() &noexcept { | 216 | 24 | assert(hasVal); | 217 | 0 | return val; | 218 | 24 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift6Mangle10ASTMangler14SpecialContextELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen10LinkEntityELb1EE5valueEv Line | Count | Source | 215 | 22 | T &value() &noexcept { | 216 | 22 | assert(hasVal); | 217 | 0 | return val; | 218 | 22 | } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZNR4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoELb1EE5valueEv Unexecuted instantiation: GenDiffFunc.cpp:_ZNR4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_119LinearFuncFieldInfoELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen9AtomicityELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPNS_4TypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen12StackAddressELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen19TypeEntityReferenceELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPNS_9InlineAsmELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS6_12ConstantInitEEEELb1EE5valueEv Line | Count | Source | 215 | 21 | T &value() &noexcept { | 216 | 21 | assert(hasVal); | 217 | 0 | return val; | 218 | 21 | } |
Unexecuted instantiation: GenStruct.cpp:_ZNR4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114ClangFieldInfoELb1EE5valueEv GenStruct.cpp:_ZNR4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_115StructFieldInfoELb1EE5valueEv Line | Count | Source | 215 | 12 | T &value() &noexcept { | 216 | 12 | assert(hasVal); | 217 | 0 | return val; | 218 | 12 | } |
Unexecuted instantiation: GenTuple.cpp:_ZNR4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114TupleFieldInfoELb1EE5valueEv Unexecuted instantiation: GenValueWitness.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang19ASTSourceDescriptorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen22CompletedDebugTypeInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPNS_12DIExpressionELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8TypeSizeELb1EE5valueEv Line | Count | Source | 215 | 3 | T &value() &noexcept { | 216 | 3 | assert(hasVal); | 217 | 0 | return val; | 218 | 3 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen13OperationCostELb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift5irgen19NonFixedOffsetsImplELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIhEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIhLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23OriginallyDefinedInAttr13ActiveVersionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_5MachO13PackedVersionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen4SizeEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5irgen9AlignmentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen9AlignmentEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIjEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPNS_8ConstantELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift5irgen13FixedTypeInfoELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift7RT_KindELb1EE5valueEv Line | Count | Source | 215 | 82 | T &value() &noexcept { | 216 | 82 | assert(hasVal); | 217 | 0 | return val; | 218 | 82 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16DiverseStackBase15stable_iteratorELb1EE5valueEv Line | Count | Source | 215 | 435 | T &value() &noexcept { | 216 | 435 | assert(hasVal); | 217 | 0 | return val; | 218 | 435 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift8Lowering14InitializationEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering8JumpDestELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EE5valueEv Line | Count | Source | 215 | 2.73k | T &value() &noexcept { | 216 | 2.73k | assert(hasVal); | 217 | 0 | return val; | 218 | 2.73k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPKN5swift18DifferentiableAttrELb1EE5valueEv Line | Count | Source | 215 | 132 | T &value() &noexcept { | 216 | 132 | assert(hasVal); | 217 | 0 | return val; | 218 | 132 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPKN5swift14DerivativeAttrELb1EE5valueEv Line | Count | Source | 215 | 28 | T &value() &noexcept { | 216 | 28 | assert(hasVal); | 217 | 0 | return val; | 218 | 28 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12ProtocolDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8FuncDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18AssociatedTypeDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift7VarDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19ProtocolConformanceELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering15FunctionSectionELb1EE5valueEv Line | Count | Source | 215 | 6 | T &value() &noexcept { | 216 | 6 | assert(hasVal); | 217 | 0 | return val; | 218 | 6 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering14CalleeTypeInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering18SpecializedEmitterELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering22ConversionPeepholeHintELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering10ConversionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering10Conversion6KindTyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering12ManagedValueELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift7ASTNodeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering20LogicalPathComponent13AccessStorageELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EE5valueEv Line | Count | Source | 215 | 21 | T &value() &noexcept { | 216 | 21 | assert(hasVal); | 217 | 0 | return val; | 218 | 21 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15KeyPathTypeKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15AnyFunctionTypeEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift10LoopRegion11SuccessorIDELb1EE5valueEv Line | Count | Source | 215 | 55.5k | T &value() &noexcept { | 216 | 55.5k | assert(hasVal); | 217 | 0 | return val; | 218 | 55.5k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKjLb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift16MatchingSetFlagsELb1EE5valueEv Line | Count | Source | 215 | 454 | T &value() &noexcept { | 216 | 454 | assert(hasVal); | 217 | 0 | return val; | 218 | 454 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift13ArrayCallKindELb1EE5valueEv Line | Count | Source | 215 | 70 | T &value() &noexcept { | 216 | 70 | assert(hasVal); | 217 | 0 | return val; | 218 | 70 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntryELb1EE5valueEv Line | Count | Source | 215 | 24 | T &value() &noexcept { | 216 | 24 | assert(hasVal); | 217 | 0 | return val; | 218 | 24 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift21EpilogueARCBlockStateELb1EE5valueEv Line | Count | Source | 215 | 4.86k | T &value() &noexcept { | 216 | 4.86k | assert(hasVal); | 217 | 0 | return val; | 218 | 4.86k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift13EndAccessInstELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15SILFunctionTypeEEELb1EE5valueEv Line | Count | Source | 215 | 6 | T &value() &noexcept { | 216 | 6 | assert(hasVal); | 217 | 0 | return val; | 218 | 6 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16SILParameterInfoELb1EE5valueEv Line | Count | Source | 215 | 77 | T &value() &noexcept { | 216 | 77 | assert(hasVal); | 217 | 0 | return val; | 218 | 77 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18MarkDependenceInstELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift9ValueBase25DefiningInstructionResultELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25SILInstructionResultArrayELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EE5valueEv Line | Count | Source | 215 | 2.78k | T &value() &noexcept { | 216 | 2.78k | assert(hasVal); | 217 | 0 | return val; | 218 | 2.78k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15FixLifetimeInstELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12TryApplyInstELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift9ApplySiteELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift14AllocStackInstELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_16PartialApplyInstENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj16EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15DestroyAddrInstELb1EE5valueEv DefiniteInitialization.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16DIKindELb1EE5valueEv Line | Count | Source | 215 | 30 | T &value() &noexcept { | 216 | 30 | assert(hasVal); | 217 | 0 | return val; | 218 | 30 | } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114RecordedAccessELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16SubElementOffsetELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_7SILNodeENS_8OptionalINS2_21TypeTreeLeafTypeRangeEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift13SILBasicBlockELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalINS6_IPNS2_7OperandENS2_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS2_14FrozenMultiMapIS8_SE_NS_11SmallVectorISG_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift13EndBorrowInstELb1EE5valueEv Unexecuted instantiation: YieldOnceCheck.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift12SILSuccessor13pred_iteratorELb1EE5valueEv YieldOnceCheck.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck7BBStateELb1EE5valueEv Line | Count | Source | 215 | 18 | T &value() &noexcept { | 216 | 18 | assert(hasVal); | 217 | 0 | return val; | 218 | 18 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9StoreInstELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13SymbolicValueELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13BorrowedValueELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16DestroyValueInstELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKind7innertyELb1EE5valueEv Line | Count | Source | 215 | 116k | T &value() &noexcept { | 216 | 116k | assert(hasVal); | 217 | 0 | return val; | 218 | 116k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift17FullApplySiteKindELb1EE5valueEv Line | Count | Source | 215 | 25.1k | T &value() &noexcept { | 216 | 25.1k | assert(hasVal); | 217 | 0 | return val; | 218 | 25.1k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKind7innertyELb1EE5valueEv Line | Count | Source | 215 | 287k | T &value() &noexcept { | 216 | 287k | assert(hasVal); | 217 | 0 | return val; | 218 | 287k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8PassKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift13ApplySiteKindELb1EE5valueEv Line | Count | Source | 215 | 4.26k | T &value() &noexcept { | 216 | 4.26k | assert(hasVal); | 217 | 0 | return val; | 218 | 4.26k | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift14SILInstructionEEELb1EE5valueEv Line | Count | Source | 215 | 275 | T &value() &noexcept { | 216 | 275 | assert(hasVal); | 217 | 0 | return val; | 218 | 275 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift14SILInstructionELb1EE5valueEv Line | Count | Source | 215 | 128k | T &value() &noexcept { | 216 | 128k | assert(hasVal); | 217 | 0 | return val; | 218 | 128k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14ProjectionKindELb1EE5valueEv Line | Count | Source | 215 | 3.78k | T &value() &noexcept { | 216 | 3.78k | assert(hasVal); | 217 | 0 | return val; | 218 | 3.78k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16BuiltinValueKindELb1EE5valueEv Line | Count | Source | 215 | 60.9k | T &value() &noexcept { | 216 | 60.9k | assert(hasVal); | 217 | 0 | return val; | 218 | 60.9k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift29ConcreteOpenedExistentialInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageI20ConcreteArgumentCopyLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11semanticarc19OwnershipPhiOperandELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift21MarkUninitializedInst4KindELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift13CopyValueInstELb1EE5valueEv Line | Count | Source | 215 | 3 | T &value() &noexcept { | 216 | 3 | assert(hasVal); | 217 | 0 | return val; | 218 | 3 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16DeallocStackInstELb1EE5valueEv RedundantOverflowCheckRemoval.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationELb1EE5valueEv Line | Count | Source | 215 | 16 | T &value() &noexcept { | 216 | 16 | assert(hasVal); | 217 | 0 | return val; | 218 | 16 | } |
SILMem2Reg.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120StorageStateTrackingINS2_10LiveValuesEEELb1EE5valueEv Line | Count | Source | 215 | 86 | T &value() &noexcept { | 216 | 86 | assert(hasVal); | 217 | 0 | return val; | 218 | 86 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15StoreBorrowInstELb1EE5valueEv SILMem2Reg.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_110LiveValuesELb1EE5valueEv Line | Count | Source | 215 | 24 | T &value() &noexcept { | 216 | 24 | assert(hasVal); | 217 | 0 | return val; | 218 | 24 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift22LoadOwnershipQualifierELb1EE5valueEv Line | Count | Source | 215 | 2.10k | T &value() &noexcept { | 216 | 2.10k | assert(hasVal); | 217 | 0 | return val; | 218 | 2.10k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift13LoadOperationELb1EE5valueEv Line | Count | Source | 215 | 163 | T &value() &noexcept { | 216 | 163 | assert(hasVal); | 217 | 0 | return val; | 218 | 163 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14ProfileCounterELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageI17WellKnownFunctionLb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEELb1EE5valueEv Line | Count | Source | 215 | 639 | T &value() &noexcept { | 216 | 639 | assert(hasVal); | 217 | 0 | return val; | 218 | 639 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN21LexicalDestroyFolding5MatchELb1EE5valueEv Unexecuted instantiation: SILInliner.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114BeginApplySiteELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10ModuleDeclELb1EE5valueEv Unexecuted instantiation: APIDigesterData.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115DiffItemKeyKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3ide3api15APIDiffItemKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api11SDKNodeKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3ide3api14NodeAnnotationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3ide3api13SpecialCaseIdELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift6markup9ParagraphELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift6markup12ReturnsFieldELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift6markup11ThrowsFieldELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift13DeclAttributeELb1EE5valueEv Line | Count | Source | 215 | 8.69k | T &value() &noexcept { | 216 | 8.69k | assert(hasVal); | 217 | 0 | return val; | 218 | 8.69k | } |
Unexecuted instantiation: Formatting.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115ContextOverride8OverrideELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift5TokenELb1EE5valueEv Unexecuted instantiation: Formatting.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112TrailingInfoELb1EE5valueEv Unexecuted instantiation: Formatting.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113IndentContextELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3ide17ResolvedRangeInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift10AccessKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift7LocatedIPNS2_12ArgumentListEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIiLb1EE5valueEv Line | Count | Source | 215 | 99.2k | T &value() &noexcept { | 216 | 99.2k | assert(hasVal); | 217 | 0 | return val; | 218 | 99.2k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift6driver20IncrementalJobAction9InputInfo6StatusELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift7options2IDELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver6Driver10DriverKindEEELb1EE5valueEv Line | Count | Source | 215 | 5 | T &value() &noexcept { | 216 | 5 | assert(hasVal); | 217 | 0 | return val; | 218 | 5 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift6driver6Driver10DriverKindELb1EE5valueEv Line | Count | Source | 215 | 5 | T &value() &noexcept { | 216 | 5 | assert(hasVal); | 217 | 0 | return val; | 218 | 5 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo7LTOKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo7LTOKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11NullablePtrINS2_25fine_grained_dependencies18ModuleDepGraphNodeEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift19DefaultArgumentKindELb1EE5valueEv Line | Count | Source | 215 | 4.15k | T &value() &noexcept { | 216 | 4.15k | assert(hasVal); | 217 | 0 | return val; | 218 | 4.15k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolation4KindELb1EE5valueEv Line | Count | Source | 215 | 4.15k | T &value() &noexcept { | 216 | 4.15k | assert(hasVal); | 217 | 0 | return val; | 218 | 4.15k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16BuiltinMacroKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift29SILParameterDifferentiabilityELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift26SILResultDifferentiabilityELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift16ResultConventionELb1EE5valueEv Line | Count | Source | 215 | 220 | T &value() &noexcept { | 216 | 220 | assert(hasVal); | 217 | 0 | return val; | 218 | 220 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15RequirementKindELb1EE5valueEv Line | Count | Source | 215 | 1.46k | T &value() &noexcept { | 216 | 1.46k | assert(hasVal); | 217 | 0 | return val; | 218 | 1.46k | } |
_ZNR4llvm15optional_detail15OptionalStorageI20LayoutConstraintKindLb1EE5valueEv Line | Count | Source | 215 | 14 | T &value() &noexcept { | 216 | 14 | assert(hasVal); | 217 | 0 | return val; | 218 | 14 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift12ReadImplKindELb1EE5valueEv Line | Count | Source | 215 | 374 | T &value() &noexcept { | 216 | 374 | assert(hasVal); | 217 | 0 | return val; | 218 | 374 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift13WriteImplKindELb1EE5valueEv Line | Count | Source | 215 | 374 | T &value() &noexcept { | 216 | 374 | assert(hasVal); | 217 | 0 | return val; | 218 | 374 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift17ReadWriteImplKindELb1EE5valueEv Line | Count | Source | 215 | 374 | T &value() &noexcept { | 216 | 374 | assert(hasVal); | 217 | 0 | return val; | 218 | 374 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16SILCoroutineKindELb1EE5valueEv Line | Count | Source | 215 | 267 | T &value() &noexcept { | 216 | 267 | assert(hasVal); | 217 | 0 | return val; | 218 | 267 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift19ParameterConventionELb1EE5valueEv Line | Count | Source | 215 | 817 | T &value() &noexcept { | 216 | 817 | assert(hasVal); | 217 | 0 | return val; | 218 | 817 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23StableSerializationPath12ExternalPath13ComponentKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang14IdentifierInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang22OverloadedOperatorKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift17StringLiteralInst8EncodingELb1EE5valueEv Line | Count | Source | 215 | 488 | T &value() &noexcept { | 216 | 488 | assert(hasVal); | 217 | 0 | return val; | 218 | 488 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14SILVTableEntry4KindELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift10ImportKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11CommentInfoELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift10ModuleDecl16ImportFilterKindELb1EE5valueEv Line | Count | Source | 215 | 213 | T &value() &noexcept { | 216 | 213 | assert(hasVal); | 217 | 0 | return val; | 218 | 213 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11LibraryKindELb1EE5valueEv Line | Count | Source | 215 | 71 | T &value() &noexcept { | 216 | 71 | assert(hasVal); | 217 | 0 | return val; | 218 | 71 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23ExpandedMacroDefinitionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang11ConceptDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang14IdentifierInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang12TemplateNameELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang7TagDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang20TemplateTypeParmDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift4DeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang4TypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift11DeclContextELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift18GenericEnvironmentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15PackConformanceELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift9SILLayoutELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_18PointerEmbeddedIntIjLi31EEELb1EE5valueEv Line | Count | Source | 215 | 9.35k | T &value() &noexcept { | 216 | 9.35k | assert(hasVal); | 217 | 0 | return val; | 218 | 9.35k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang13CXXRecordDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang13CXXRecordDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang11ConceptDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang4DeclELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang4DeclELb1EE5valueEv Line | Count | Source | 215 | 102 | T &value() &noexcept { | 216 | 102 | assert(hasVal); | 217 | 0 | return val; | 218 | 102 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang4ExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang4ExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang12FunctionDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang12FunctionDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang9NamedDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang9NamedDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang18NamespaceAliasDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang18NamespaceAliasDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang13NamespaceDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang13NamespaceDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang16ObjCProtocolDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang16ObjCProtocolDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang17ObjCTypeParamDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang17ObjCTypeParamDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang4StmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang4StmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang7TagDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang12TemplateDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang12TemplateDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang24TemplateTemplateParmDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang24TemplateTemplateParmDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang20TemplateTypeParmDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang15UsingShadowDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang15UsingShadowDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5clang9ValueDeclELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang9ValueDeclELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift14ImportedModuleELb1EE5valueEv Line | Count | Source | 215 | 34 | T &value() &noexcept { | 216 | 34 | assert(hasVal); | 217 | 0 | return val; | 218 | 34 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift10SILLinkageELb1EE5valueEv Line | Count | Source | 215 | 440 | T &value() &noexcept { | 216 | 440 | assert(hasVal); | 217 | 0 | return val; | 218 | 440 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPKN5swift11EffectsAttrELb1EE5valueEv Line | Count | Source | 215 | 7 | T &value() &noexcept { | 216 | 7 | assert(hasVal); | 217 | 0 | return val; | 218 | 7 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift10ExposeAttrELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift12TangentSpaceELb1EE5valueEv Line | Count | Source | 215 | 620 | T &value() &noexcept { | 216 | 620 | assert(hasVal); | 217 | 0 | return val; | 218 | 620 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift7CanTypeELb1EE5valueEv Line | Count | Source | 215 | 158 | T &value() &noexcept { | 216 | 158 | assert(hasVal); | 217 | 0 | return val; | 218 | 158 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15SubstitutionMapELb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
Unexecuted instantiation: SILFunctionType.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift14AnyFunctionRefELb1EE5valueEv Line | Count | Source | 215 | 691 | T &value() &noexcept { | 216 | 691 | assert(hasVal); | 217 | 0 | return val; | 218 | 691 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift26FunctionTypeRepresentationELb1EE5valueEv Line | Count | Source | 215 | 58 | T &value() &noexcept { | 216 | 58 | assert(hasVal); | 217 | 0 | return val; | 218 | 58 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EE5valueEv Line | Count | Source | 215 | 116 | T &value() &noexcept { | 216 | 116 | assert(hasVal); | 217 | 0 | return val; | 218 | 116 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift24DifferentiationThunkKindELb1EE5valueEv Line | Count | Source | 215 | 14 | T &value() &noexcept { | 216 | 14 | assert(hasVal); | 217 | 0 | return val; | 218 | 14 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKind7innertyELb1EE5valueEv Line | Count | Source | 215 | 1.61k | T &value() &noexcept { | 216 | 1.61k | assert(hasVal); | 217 | 0 | return val; | 218 | 1.61k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift18SILDynamicCastKindELb1EE5valueEv Line | Count | Source | 215 | 41 | T &value() &noexcept { | 216 | 41 | assert(hasVal); | 217 | 0 | return val; | 218 | 41 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EE5valueEv Line | Count | Source | 215 | 4.75k | T &value() &noexcept { | 216 | 4.75k | assert(hasVal); | 217 | 0 | return val; | 218 | 4.75k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift20SILModuleConventionsELb1EE5valueEv Line | Count | Source | 215 | 954 | T &value() &noexcept { | 216 | 954 | assert(hasVal); | 217 | 0 | return val; | 218 | 954 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EE5valueEv Unexecuted instantiation: SILProfiler.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16SILSymbolVisitor11DynamicKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13OwnershipKind7innertyEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13OwnershipKind7innertyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13CapturedValueELb1EE5valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_4clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EE5valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_4clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift17TransformIteratorIPNS2_12SILSuccessorEPFPNS2_13SILBasicBlockERKS4_EEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20AccessRepresentation4KindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift17AccessStorageCastELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13AccessStorageELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift10ProjectionELb1EE5valueEv Line | Count | Source | 215 | 151 | T &value() &noexcept { | 216 | 151 | assert(hasVal); | 217 | 0 | return val; | 218 | 151 | } |
Unexecuted instantiation: PrunedLiveness.cpp:_ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_2clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EE5valueEv Unexecuted instantiation: PrunedLiveness.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZNK5swift4test3$_2clINS2_11SILFunctionENS3_9ArgumentsENS3_12FunctionTestEEEDaRT_RT0_RT1_E4KindLb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift7OperandEEELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift21LinearLifetimeChecker5ErrorELb1EE5valueEv Line | Count | Source | 215 | 458 | T &value() &noexcept { | 216 | 458 | assert(hasVal); | 217 | 0 | return val; | 218 | 458 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Line | Count | Source | 215 | 161 | T &value() &noexcept { | 216 | 161 | assert(hasVal); | 217 | 0 | return val; | 218 | 161 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift13SILBasicBlockEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12function_refIFvPN5swift7OperandEEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift4DeclELb1EE5valueEv Line | Count | Source | 215 | 231 | T &value() &noexcept { | 216 | 231 | assert(hasVal); | 217 | 0 | return val; | 218 | 231 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EE5valueEv Line | Count | Source | 215 | 5.42k | T &value() &noexcept { | 216 | 5.42k | assert(hasVal); | 217 | 0 | return val; | 218 | 5.42k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4test12BoolArgumentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4test12UIntArgumentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4test8ArgumentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJyxNS_9StringRefEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJPNS2_11SILFunctionEPNS2_13SILBasicBlockEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4test14StringArgumentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12AccessorKindEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift18SILInstructionKindEEELb1EE5valueEv Line | Count | Source | 215 | 27 | T &value() &noexcept { | 216 | 27 | assert(hasVal); | 217 | 0 | return val; | 218 | 27 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23OpenedExistentialAccessEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23OpenedExistentialAccessELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19AssignByWrapperInst4ModeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16AssignOrInitInst4ModeELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift10SILLinkageEEELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift18SILInstructionKindELb1EE5valueEv Line | Count | Source | 215 | 27 | T &value() &noexcept { | 216 | 27 | assert(hasVal); | 217 | 0 | return val; | 218 | 27 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedReferenceBindingInst4KindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22LoadOwnershipQualifierEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift19CastConsumptionKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19CastConsumptionKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23StoreOwnershipQualifierEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift24AssignOwnershipQualifierEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23StoreOwnershipQualifierELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift24AssignOwnershipQualifierELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift9SILParser19UnresolvedValueNameELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8coverage7CounterELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_12PointerUnionIJPN5swift4StmtEPNS3_4DeclEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints16ConstraintSystem15TypeMatchResultELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EE5valueEv Line | Count | Source | 215 | 595 | T &value() &noexcept { | 216 | 595 | assert(hasVal); | 217 | 0 | return val; | 218 | 595 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIN5swift20StmtConditionElementEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift13CaseLabelItemELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17CaseLabelItemInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8ExprKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints23AppliedBuilderTransformELb1EE5valueEv Unexecuted instantiation: CSSyntacticElement.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_123SyntacticElementContextELb1EE5valueEv Unexecuted instantiation: CSGen.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeELb1EE5valueEv Unexecuted instantiation: CSRanking.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121TypeBindingsToCompareELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8TypeBaseELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17CompletionArgInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12TupleElementELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeELb1EE5valueEv Line | Count | Source | 215 | 6 | T &value() &noexcept { | 216 | 6 | assert(hasVal); | 217 | 0 | return val; | 218 | 6 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints25SingleValueStmtBranchKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11constraints13ConstraintFixELb1EE5valueEv Line | Count | Source | 215 | 42 | T &value() &noexcept { | 216 | 42 | assert(hasVal); | 217 | 0 | return val; | 218 | 42 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints18MemberLookupResult14UnviableReasonELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15AnyFunctionType5ParamELb1EE5valueEv Line | Count | Source | 215 | 481 | T &value() &noexcept { | 216 | 481 | assert(hasVal); | 217 | 0 | return val; | 218 | 481 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift10IdentifierEEELb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints9ScoreKindELb1EE5valueEv Line | Count | Source | 215 | 1.44k | T &value() &noexcept { | 216 | 1.44k | assert(hasVal); | 217 | 0 | return val; | 218 | 1.44k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints14ConstraintKindELb1EE5valueEv Line | Count | Source | 215 | 2.12k | T &value() &noexcept { | 216 | 2.12k | assert(hasVal); | 217 | 0 | return val; | 218 | 2.12k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints19TypeVariableBindingELb1EE5valueEv Line | Count | Source | 215 | 336 | T &value() &noexcept { | 216 | 336 | assert(hasVal); | 217 | 0 | return val; | 218 | 336 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints18ConjunctionElementELb1EE5valueEv CSStep.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZN5swift11constraints13ComponentStep4takeEbE8StepKindLb1EE5valueEv Line | Count | Source | 215 | 106 | T &value() &noexcept { | 216 | 106 | assert(hasVal); | 217 | 0 | return val; | 218 | 106 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints25ConversionRestrictionKindELb1EE5valueEv Line | Count | Source | 215 | 205 | T &value() &noexcept { | 216 | 205 | assert(hasVal); | 217 | 0 | return val; | 218 | 205 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints11FixBehaviorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints20FunctionArgApplyInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementELb1EE5valueEv Unexecuted instantiation: CSDiagnostics.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints23TrailingClosureMatchingELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElementELb1EE5valueEv Line | Count | Source | 215 | 6.48k | T &value() &noexcept { | 216 | 6.48k | assert(hasVal); | 217 | 0 | return val; | 218 | 6.48k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints18ContextualTypeInfoELb1EE5valueEv Line | Count | Source | 215 | 287 | T &value() &noexcept { | 216 | 287 | assert(hasVal); | 217 | 0 | return val; | 218 | 287 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints7FixKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EE5valueEv Line | Count | Source | 215 | 259 | T &value() &noexcept { | 216 | 259 | assert(hasVal); | 217 | 0 | return val; | 218 | 259 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementELb1EE5valueEv Line | Count | Source | 215 | 5.78k | T &value() &noexcept { | 216 | 5.78k | assert(hasVal); | 217 | 0 | return val; | 218 | 5.78k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericELb1EE5valueEv Line | Count | Source | 215 | 2.89k | T &value() &noexcept { | 216 | 2.89k | assert(hasVal); | 217 | 0 | return val; | 218 | 2.89k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints14OverloadChoiceELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference16PotentialBindingELb1EE5valueEv Line | Count | Source | 215 | 658 | T &value() &noexcept { | 216 | 658 | assert(hasVal); | 217 | 0 | return val; | 218 | 658 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageI19RuntimeVersionCheckLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11DeclNameRefELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift21ContextualTypePurposeELb1EE5valueEv Line | Count | Source | 215 | 112 | T &value() &noexcept { | 216 | 112 | assert(hasVal); | 217 | 0 | return val; | 218 | 112 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift26MagicIdentifierLiteralExpr4KindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23SyntacticTypoCorrectionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19ExportabilityReasonELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageI35AbstractFunctionDeclLookupErrorKindLb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4DiagIJEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4DiagIJbNS2_4TypeEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20UnavailabilityReasonELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18DiagnosticBehaviorELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23CompletionContextFinder8FallbackELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift12VarRefUseEnvELb1EE5valueEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PartialApplyThunkInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22DispatchQueueOperationELb1EE5valueEv TypeCheckConcurrency.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_126MemberIsolationPropagationELb1EE5valueEv Line | Count | Source | 215 | 579 | T &value() &noexcept { | 216 | 579 | assert(hasVal); | 217 | 0 | return val; | 218 | 579 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22DispatchQueueOperationEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterELb1EE5valueEv Unexecuted instantiation: TypeCheckDecl.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121ImplicitlyFinalReasonELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22AutomaticEnumValueKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4DiagIJjNS2_8DeclNameENS2_12ObjCSelectorEEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift7LocatedINS2_18StaticSpellingKindEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift18StaticSpellingKindELb1EE5valueEv Line | Count | Source | 215 | 2.89k | T &value() &noexcept { | 216 | 2.89k | assert(hasVal); | 217 | 0 | return val; | 218 | 2.89k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift10ObjCReasonELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ParamDeclELb1EE5valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_17ContextELb1EE5valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift10EffectKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift23ExternalMacroDefinitionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift11SourceRangeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15CheckedCastKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift14AutoDiffConfigELb1EE5valueEv Line | Count | Source | 215 | 13 | T &value() &noexcept { | 216 | 13 | assert(hasVal); | 217 | 0 | return val; | 218 | 13 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EE5valueEv Line | Count | Source | 215 | 117 | T &value() &noexcept { | 216 | 117 | assert(hasVal); | 217 | 0 | return val; | 218 | 117 | } |
Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS2_9ClassDeclEE16UnstableNameKindLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8DeclNameELb1EE5valueEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift11AccessScopeELb1EE5valueEv Line | Count | Source | 215 | 674 | T &value() &noexcept { | 216 | 674 | assert(hasVal); | 217 | 0 | return val; | 218 | 674 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeES4_EEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EE5valueEv Line | Count | Source | 215 | 347k | T &value() &noexcept { | 216 | 347k | assert(hasVal); | 217 | 0 | return val; | 218 | 347k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19TypeWitnessConflictELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25RegexCaptureStructureCodeELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TypeResolutionELb1EE5valueEv Line | Count | Source | 215 | 155 | T &value() &noexcept { | 216 | 155 | assert(hasVal); | 217 | 0 | return val; | 218 | 155 | } |
Unexecuted instantiation: TypeCheckStorage.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25PropertyWrapperMutabilityELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes19OpaqueReturnTypeRefELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift29SILFunctionTypeRepresentationEEELb1EE5valueEv Line | Count | Source | 215 | 23 | T &value() &noexcept { | 216 | 23 | assert(hasVal); | 217 | 0 | return val; | 218 | 23 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift29SILFunctionTypeRepresentationELb1EE5valueEv Line | Count | Source | 215 | 557 | T &value() &noexcept { | 216 | 557 | assert(hasVal); | 217 | 0 | return val; | 218 | 557 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes10ConventionELb1EE5valueEv Line | Count | Source | 215 | 33 | T &value() &noexcept { | 216 | 33 | assert(hasVal); | 217 | 0 | return val; | 218 | 33 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift26FunctionTypeRepresentationEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16FunctionTypeReprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13SanitizerKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_24SanitizerCoverageOptions4TypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13SanitizerKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5clang6ModuleELb1EE5valueEv Line | Count | Source | 215 | 46 | T &value() &noexcept { | 216 | 46 | assert(hasVal); | 217 | 0 | return val; | 218 | 46 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ImportedModuleEEELb1EE5valueEv Line | Count | Source | 215 | 82 | T &value() &noexcept { | 216 | 82 | assert(hasVal); | 217 | 0 | return val; | 218 | 82 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift30ObjCInterfaceAndImplementationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang8QualTypeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift12DeclBaseNameELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8importer12ImportedNameELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang13SwiftAttrAttrELb1EE5valueEv Unexecuted instantiation: ImportDecl.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112AccessorInfoELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EE5valueEv Line | Count | Source | 215 | 329 | T &value() &noexcept { | 216 | 329 | assert(hasVal); | 217 | 0 | return val; | 218 | 329 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12PlatformKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift12PlatformKindELb1EE5valueEv Unexecuted instantiation: ImportName.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_116AnySwiftNameAttrELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4KindELb1EE5valueEv Unexecuted instantiation: ImportType.cpp:_ZNR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_112ImportResultELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift18MappedTypeNameKindELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5clang8EnumDeclELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift13ClangImporter14Implementation25ImportParameterTypeResultELb1EE5valueEv Line | Count | Source | 215 | 54 | T &value() &noexcept { | 216 | 54 | assert(hasVal); | 217 | 0 | return val; | 218 | 54 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConvention4InfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConvention4InfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21EffectiveClangContextELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift3tokELb1EE5valueEv Unexecuted instantiation: ParseDecl.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseStorageRestrictionsAttributeENS2_9SourceLocES4_E10AccessKindLb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS_9StringRefES4_EEELb1EE5valueEv Unexecuted instantiation: ParseDecl.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseExtendedAvailabilitySpecListENS2_9SourceLocES4_NS_9StringRefEE3$_4Lb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift14SpecializeAttr18SpecializationKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift21DifferentiabilityKindELb1EE5valueEv Line | Count | Source | 215 | 407 | T &value() &noexcept { | 216 | 407 | assert(hasVal); | 217 | 0 | return val; | 218 | 407 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift11AccessLevelEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9MacroRoleEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27MacroIntroducedDeclNameKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift27MacroIntroducedDeclNameKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift10InlineKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16OptimizationModeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15ExclusivityAttr4ModeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ReferenceOwnershipELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15NonSendableKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13AssociativityEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift13AssociativityELb1EE5valueEv Line | Count | Source | 215 | 84 | T &value() &noexcept { | 216 | 84 | assert(hasVal); | 217 | 0 | return val; | 218 | 84 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21EditorPlaceholderDataELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20AvailabilitySpecKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21PlatformConditionKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift21PlatformConditionKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15TuplePatternEltELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift7ASTNodeEEELb1EE5valueEv Line | Count | Source | 215 | 114 | T &value() &noexcept { | 216 | 114 | assert(hasVal); | 217 | 0 | return val; | 218 | 114 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingStateELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21KnownFoundationEntityEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift22MetatypeRepresentationELb1EE5valueEv Line | Count | Source | 215 | 802 | T &value() &noexcept { | 216 | 802 | assert(hasVal); | 217 | 0 | return val; | 218 | 802 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EE5valueEv Line | Count | Source | 215 | 992 | T &value() &noexcept { | 216 | 992 | assert(hasVal); | 217 | 0 | return val; | 218 | 992 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EE5valueEv Line | Count | Source | 215 | 12 | T &value() &noexcept { | 216 | 12 | assert(hasVal); | 217 | 0 | return val; | 218 | 12 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25ForeignRepresentationInfoELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift38PropertyWrapperSynthesizedPropertyKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5clang23HeaderIncludeFormatKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle30ImplParameterDifferentiabilityELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle23ImplParameterConventionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle27ImplResultDifferentiabilityELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle20ImplResultConventionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle18ImplFunctionResultINS2_4TypeEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle26ImplMetatypeRepresentationELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalI20LayoutConstraintKindEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle10ASTBuilder17ForeignModuleKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift13ClangTypeKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIcLb1EE5valueEv Line | Count | Source | 215 | 212 | T &value() &noexcept { | 216 | 212 | assert(hasVal); | 217 | 0 | return val; | 218 | 212 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPKN5swift14SpecializeAttrELb1EE5valueEv Line | Count | Source | 215 | 16 | T &value() &noexcept { | 216 | 16 | assert(hasVal); | 217 | 0 | return val; | 218 | 16 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift20TypeTransformContextELb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift23OriginallyDefinedInAttrELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift23SynthesizedProtocolAttrELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift9MacroRoleELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EE5valueEv Line | Count | Source | 215 | 9 | T &value() &noexcept { | 216 | 9 | assert(hasVal); | 217 | 0 | return val; | 218 | 9 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15CharSourceRangeELb1EE5valueEv Line | Count | Source | 215 | 32.9k | T &value() &noexcept { | 216 | 32.9k | assert(hasVal); | 217 | 0 | return val; | 218 | 32.9k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ErrorExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift14NilLiteralExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18BooleanLiteralExprELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift18IntegerLiteralExprELb1EE5valueEv Line | Count | Source | 215 | 53 | T &value() &noexcept { | 216 | 53 | assert(hasVal); | 217 | 0 | return val; | 218 | 53 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16FloatLiteralExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift17StringLiteralExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift26MagicIdentifierLiteralExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift29InterpolatedStringLiteralExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16RegexLiteralExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift17ObjectLiteralExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21DiscardAssignmentExprELb1EE5valueEv Line | Count | Source | 215 | 6 | T &value() &noexcept { | 216 | 6 | assert(hasVal); | 217 | 0 | return val; | 218 | 6 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift11DeclRefExprELb1EE5valueEv Line | Count | Source | 215 | 266 | T &value() &noexcept { | 216 | 266 | assert(hasVal); | 217 | 0 | return val; | 218 | 266 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12SuperRefExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8TypeExprELb1EE5valueEv Line | Count | Source | 215 | 58 | T &value() &noexcept { | 216 | 58 | assert(hasVal); | 217 | 0 | return val; | 218 | 58 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift27OtherConstructorDeclRefExprELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift24DotSyntaxBaseIgnoredExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21OverloadedDeclRefExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21UnresolvedDeclRefExprELb1EE5valueEv Line | Count | Source | 215 | 188 | T &value() &noexcept { | 216 | 188 | assert(hasVal); | 217 | 0 | return val; | 218 | 188 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift13MemberRefExprELb1EE5valueEv Line | Count | Source | 215 | 109 | T &value() &noexcept { | 216 | 109 | assert(hasVal); | 217 | 0 | return val; | 218 | 109 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift13SubscriptExprELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift20DynamicMemberRefExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift20DynamicSubscriptExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift24UnresolvedSpecializeExprELb1EE5valueEv Line | Count | Source | 215 | 8 | T &value() &noexcept { | 216 | 8 | assert(hasVal); | 217 | 0 | return val; | 218 | 8 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift20UnresolvedMemberExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift17UnresolvedDotExprELb1EE5valueEv Line | Count | Source | 215 | 13 | T &value() &noexcept { | 216 | 13 | assert(hasVal); | 217 | 0 | return val; | 218 | 13 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift12SequenceExprELb1EE5valueEv Line | Count | Source | 215 | 38 | T &value() &noexcept { | 216 | 38 | assert(hasVal); | 217 | 0 | return val; | 218 | 38 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ParenExprELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11DotSelfExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9AwaitExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10BorrowExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift31UnresolvedMemberChainResultExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8CopyExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11ConsumeExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift7TryExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12ForceTryExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15OptionalTryExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9TupleExprELb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ArrayExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift14DictionaryExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22KeyPathApplicationExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16TupleElementExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15CaptureListExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11ClosureExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15AutoClosureExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9InOutExprELb1EE5valueEv Line | Count | Source | 215 | 48 | T &value() &noexcept { | 216 | 48 | assert(hasVal); | 217 | 0 | return val; | 218 | 48 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19VarargExpansionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift17PackExpansionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15PackElementExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19MaterializePackExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15DynamicTypeExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift27RebindSelfInConstructorExprELb1EE5valueEv Line | Count | Source | 215 | 1 | T &value() &noexcept { | 216 | 1 | assert(hasVal); | 217 | 0 | return val; | 218 | 1 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15OpaqueValueExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift35PropertyWrapperValuePlaceholderExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift26AppliedPropertyWrapperExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19DefaultArgumentExprELb1EE5valueEv Line | Count | Source | 215 | 21 | T &value() &noexcept { | 216 | 21 | assert(hasVal); | 217 | 0 | return val; | 218 | 21 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16BindOptionalExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22OptionalEvaluationExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift14ForceValueExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19OpenExistentialExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift28MakeTemporarilyEscapableExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8CallExprELb1EE5valueEv Line | Count | Source | 215 | 96 | T &value() &noexcept { | 216 | 96 | assert(hasVal); | 217 | 0 | return val; | 218 | 96 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15PrefixUnaryExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16PostfixUnaryExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10BinaryExprELb1EE5valueEv Line | Count | Source | 215 | 17 | T &value() &noexcept { | 216 | 17 | assert(hasVal); | 217 | 0 | return val; | 218 | 17 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift17DotSyntaxCallExprELb1EE5valueEv Line | Count | Source | 215 | 33 | T &value() &noexcept { | 216 | 33 | assert(hasVal); | 217 | 0 | return val; | 218 | 33 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift22ConstructorRefCallExprELb1EE5valueEv Line | Count | Source | 215 | 23 | T &value() &noexcept { | 216 | 23 | assert(hasVal); | 217 | 0 | return val; | 218 | 23 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift8LoadExprELb1EE5valueEv Line | Count | Source | 215 | 3 | T &value() &noexcept { | 216 | 3 | assert(hasVal); | 217 | 0 | return val; | 218 | 3 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21ABISafeConversionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift20DestructureTupleExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift28UnresolvedTypeConversionExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22FunctionConversionExprELb1EE5valueEv Line | Count | Source | 215 | 3 | T &value() &noexcept { | 216 | 3 | assert(hasVal); | 217 | 0 | return val; | 218 | 3 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift31CovariantFunctionConversionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift29CovariantReturnConversionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22MetatypeConversionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift30CollectionUpcastConversionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11ErasureExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22AnyHashableErasureExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16BridgeToObjCExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18BridgeFromObjCExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift29ConditionalBridgeFromObjCExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift17DerivedToBaseExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift20ArchetypeToSuperExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22InjectIntoOptionalExprELb1EE5valueEv Line | Count | Source | 215 | 5 | T &value() &noexcept { | 216 | 5 | assert(hasVal); | 217 | 0 | return val; | 218 | 5 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift25ClassMetatypeToObjectExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift31ExistentialMetatypeToObjectExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift28ProtocolMetatypeToObjectExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18InOutToPointerExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18ArrayToPointerExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19StringToPointerExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift20PointerToPointerExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift27ForeignObjectConversionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift23UnevaluatedInstanceExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift22UnderlyingToOpaqueExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift26DifferentiableFunctionExprELb1EE5valueEv Line | Count | Source | 215 | 3 | T &value() &noexcept { | 216 | 3 | assert(hasVal); | 217 | 0 | return val; | 218 | 3 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18LinearFunctionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift41DifferentiableFunctionExtractOriginalExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift33LinearFunctionExtractOriginalExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift34LinearToDifferentiableFunctionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21ForcedCheckedCastExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift26ConditionalCheckedCastExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift6IsExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10CoerceExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ArrowExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11TernaryExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift14EnumIsCaseExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10AssignExprELb1EE5valueEv Line | Count | Source | 215 | 40 | T &value() &noexcept { | 216 | 40 | assert(hasVal); | 217 | 0 | return val; | 218 | 40 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18CodeCompletionExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21UnresolvedPatternExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19LazyInitializerExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift21EditorPlaceholderExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift16ObjCSelectorExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11KeyPathExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19SingleValueStmtExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift14KeyPathDotExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10OneWayExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift7TapExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12TypeJoinExprELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18MacroExpansionExprELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10ReturnStmtELb1EE5valueEv Line | Count | Source | 215 | 137 | T &value() &noexcept { | 216 | 137 | assert(hasVal); | 217 | 0 | return val; | 218 | 137 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8ThenStmtELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9YieldStmtELb1EE5valueEv Line | Count | Source | 215 | 25 | T &value() &noexcept { | 216 | 25 | assert(hasVal); | 217 | 0 | return val; | 218 | 25 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9DeferStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift6IfStmtELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9GuardStmtELb1EE5valueEv Line | Count | Source | 215 | 2 | T &value() &noexcept { | 216 | 2 | assert(hasVal); | 217 | 0 | return val; | 218 | 2 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9WhileStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift6DoStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11DoCatchStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15RepeatWhileStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11ForEachStmtELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift10SwitchStmtELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9BreakStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12ContinueStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15FallthroughStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift8FailStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ThrowStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11DiscardStmtELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift15PoundAssertStmtELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12ParenPatternELb1EE5valueEv Line | Count | Source | 215 | 10 | T &value() &noexcept { | 216 | 10 | assert(hasVal); | 217 | 0 | return val; | 218 | 10 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift12TuplePatternELb1EE5valueEv Line | Count | Source | 215 | 8 | T &value() &noexcept { | 216 | 8 | assert(hasVal); | 217 | 0 | return val; | 218 | 8 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift10AnyPatternELb1EE5valueEv Line | Count | Source | 215 | 4 | T &value() &noexcept { | 216 | 4 | assert(hasVal); | 217 | 0 | return val; | 218 | 4 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift12TypedPatternELb1EE5valueEv Line | Count | Source | 215 | 855 | T &value() &noexcept { | 216 | 855 | assert(hasVal); | 217 | 0 | return val; | 218 | 855 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift14BindingPatternELb1EE5valueEv Line | Count | Source | 215 | 8 | T &value() &noexcept { | 216 | 8 | assert(hasVal); | 217 | 0 | return val; | 218 | 8 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9IsPatternELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift18EnumElementPatternELb1EE5valueEv Line | Count | Source | 215 | 19 | T &value() &noexcept { | 216 | 19 | assert(hasVal); | 217 | 0 | return val; | 218 | 19 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift19OptionalSomePatternELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11BoolPatternELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11ExprPatternELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift4StmtELb1EE5valueEv Line | Count | Source | 215 | 9.30k | T &value() &noexcept { | 216 | 9.30k | assert(hasVal); | 217 | 0 | return val; | 218 | 9.30k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift7PatternELb1EE5valueEv Line | Count | Source | 215 | 11.2k | T &value() &noexcept { | 216 | 11.2k | assert(hasVal); | 217 | 0 | return val; | 218 | 11.2k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift12ArgumentListELb1EE5valueEv Line | Count | Source | 215 | 9.37k | T &value() &noexcept { | 216 | 9.37k | assert(hasVal); | 217 | 0 | return val; | 218 | 9.37k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift12TypeAttrKindELb1EE5valueEv Line | Count | Source | 215 | 126 | T &value() &noexcept { | 216 | 126 | assert(hasVal); | 217 | 0 | return val; | 218 | 126 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift12DeclAttrKindELb1EE5valueEv Line | Count | Source | 215 | 105 | T &value() &noexcept { | 216 | 105 | assert(hasVal); | 217 | 0 | return val; | 218 | 105 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift16GenericSignatureELb1EE5valueEv Line | Count | Source | 215 | 88.5k | T &value() &noexcept { | 216 | 88.5k | assert(hasVal); | 217 | 0 | return val; | 218 | 88.5k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift11IndexSubsetELb1EE5valueEv Line | Count | Source | 215 | 330 | T &value() &noexcept { | 216 | 330 | assert(hasVal); | 217 | 0 | return val; | 218 | 330 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift15NonSendableAttrELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEELb1EE5valueEv Line | Count | Source | 215 | 12 | T &value() &noexcept { | 216 | 12 | assert(hasVal); | 217 | 0 | return val; | 218 | 12 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKind7innertyELb1EE5valueEv Line | Count | Source | 215 | 12 | T &value() &noexcept { | 216 | 12 | assert(hasVal); | 217 | 0 | return val; | 218 | 12 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift41NormalDifferentiableFunctionTypeComponent7innertyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift41LinearDifferentiableFunctionTypeComponent7innertyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift36DifferentiabilityWitnessFunctionKind7innertyELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19TangentPropertyInfo5ErrorELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EE5valueEv Line | Count | Source | 215 | 64 | T &value() &noexcept { | 216 | 64 | assert(hasVal); | 217 | 0 | return val; | 218 | 64 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EE5valueEv Line | Count | Source | 215 | 334 | T &value() &noexcept { | 216 | 334 | assert(hasVal); | 217 | 0 | return val; | 218 | 334 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_14AtomicOrderingELb1EE5valueEv ClangTypeConverter.cpp:_ZNR4llvm15optional_detail15OptionalStorageIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS2_16BoundGenericTypeEE10StructKindLb1EE5valueEv Line | Count | Source | 215 | 8 | T &value() &noexcept { | 216 | 8 | assert(hasVal); | 217 | 0 | return val; | 218 | 8 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift18ExternalSourceLocsELb1EE5valueEv Line | Count | Source | 215 | 185 | T &value() &noexcept { | 216 | 185 | assert(hasVal); | 217 | 0 | return val; | 218 | 185 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift16GenericParamListELb1EE5valueEv Line | Count | Source | 215 | 53.8k | T &value() &noexcept { | 216 | 53.8k | assert(hasVal); | 217 | 0 | return val; | 218 | 53.8k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift15NominalTypeDeclELb1EE5valueEv Line | Count | Source | 215 | 24 | T &value() &noexcept { | 216 | 24 | assert(hasVal); | 217 | 0 | return val; | 218 | 24 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift19PatternBindingEntryELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift12AccessorDeclELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift19OpaqueReadOwnershipELb1EE5valueEv Line | Count | Source | 215 | 766 | T &value() &noexcept { | 216 | 766 | assert(hasVal); | 217 | 0 | return val; | 218 | 766 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift20ImplicitMemberActionELb1EE5valueEv Line | Count | Source | 215 | 22 | T &value() &noexcept { | 216 | 22 | assert(hasVal); | 217 | 0 | return val; | 218 | 22 | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift14DestructorDeclELb1EE5valueEv Line | Count | Source | 215 | 490 | T &value() &noexcept { | 216 | 490 | assert(hasVal); | 217 | 0 | return val; | 218 | 490 | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift12ProtocolDeclEEELb1EE5valueEv Line | Count | Source | 215 | 7.16k | T &value() &noexcept { | 216 | 7.16k | assert(hasVal); | 217 | 0 | return val; | 218 | 7.16k | } |
_ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPN5swift9ValueDeclEEELb1EE5valueEv Line | Count | Source | 215 | 202 | T &value() &noexcept { | 216 | 202 | assert(hasVal); | 217 | 0 | return val; | 218 | 202 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift20RequirementSignatureELb1EE5valueEv Line | Count | Source | 215 | 10.1k | T &value() &noexcept { | 216 | 10.1k | assert(hasVal); | 217 | 0 | return val; | 218 | 10.1k | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift15StorageImplInfoELb1EE5valueEv Line | Count | Source | 215 | 5.09k | T &value() &noexcept { | 216 | 5.09k | assert(hasVal); | 217 | 0 | return val; | 218 | 5.09k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift12NamedPatternELb1EE5valueEv Line | Count | Source | 215 | 945 | T &value() &noexcept { | 216 | 945 | assert(hasVal); | 217 | 0 | return val; | 218 | 945 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14ParamSpecifierELb1EE5valueEv Line | Count | Source | 215 | 17.5k | T &value() &noexcept { | 216 | 17.5k | assert(hasVal); | 217 | 0 | return val; | 218 | 17.5k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift11InitializerELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift4ExprELb1EE5valueEv Line | Count | Source | 215 | 64.7k | T &value() &noexcept { | 216 | 64.7k | assert(hasVal); | 217 | 0 | return val; | 218 | 64.7k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9BraceStmtELb1EE5valueEv Line | Count | Source | 215 | 555 | T &value() &noexcept { | 216 | 555 | assert(hasVal); | 217 | 0 | return val; | 218 | 555 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift14SelfAccessKindELb1EE5valueEv Line | Count | Source | 215 | 18.8k | T &value() &noexcept { | 216 | 18.8k | assert(hasVal); | 217 | 0 | return val; | 218 | 18.8k | } |
_ZNR4llvm15optional_detail15OptionalStorageINSt3__15tupleIJEEELb1EE5valueEv Line | Count | Source | 215 | 18 | T &value() &noexcept { | 216 | 18 | assert(hasVal); | 217 | 0 | return val; | 218 | 18 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift13MacroRoleAttrELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift14DiagnosticInfoELb1EE5valueEv Line | Count | Source | 215 | 268 | T &value() &noexcept { | 216 | 268 | assert(hasVal); | 217 | 0 | return val; | 218 | 268 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift6markup10ParamFieldELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift10RawCommentELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies8NodeKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25fine_grained_dependencies10DeclAspectELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift10CustomAttrELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift23SourceFileParsingResultELb1EE5valueEv Line | Count | Source | 215 | 228 | T &value() &noexcept { | 216 | 228 | assert(hasVal); | 217 | 0 | return val; | 218 | 228 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift12StableHasherELb1EE5valueEv Line | Count | Source | 215 | 11.9k | T &value() &noexcept { | 216 | 11.9k | assert(hasVal); | 217 | 0 | return val; | 218 | 11.9k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18ArtificialMainKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift16AttributedImportINS2_14ImportedModuleEEELb1EE5valueEv Line | Count | Source | 215 | 12.0k | T &value() &noexcept { | 216 | 12.0k | assert(hasVal); | 217 | 0 | return val; | 218 | 12.0k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIPKN5swift20SPIAccessControlAttrELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift5TokenEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyKindELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIPN5swift9ClassDeclELb1EE5valueEv Line | Count | Source | 215 | 25.5k | T &value() &noexcept { | 216 | 25.5k | assert(hasVal); | 217 | 0 | return val; | 218 | 25.5k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift8CaseStmtELb1EE5valueEv Line | Count | Source | 215 | 124 | T &value() &noexcept { | 216 | 124 | assert(hasVal); | 217 | 0 | return val; | 218 | 124 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ExprPatternMatchResultELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift18TypeWitnessAndDeclELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift7WitnessELb1EE5valueEv Line | Count | Source | 215 | 216 | T &value() &noexcept { | 216 | 216 | assert(hasVal); | 217 | 0 | return val; | 218 | 216 | } |
_ZNR4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EE5valueEv Line | Count | Source | 215 | 47.9k | T &value() &noexcept { | 216 | 47.9k | assert(hasVal); | 217 | 0 | return val; | 218 | 47.9k | } |
_ZNR4llvm15optional_detail15OptionalStorageIPN5swift9rewriting11PropertyBagELb1EE5valueEv Line | Count | Source | 215 | 27.9k | T &value() &noexcept { | 216 | 27.9k | assert(hasVal); | 217 | 0 | return val; | 218 | 27.9k | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9rewriting10DebugFlagsEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift9rewriting10DebugFlagsELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift9rewriting4TermEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift22ProtocolConformanceRefELb1EE5valueEv Line | Count | Source | 215 | 442 | T &value() &noexcept { | 216 | 442 | assert(hasVal); | 217 | 0 | return val; | 218 | 442 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift19CanGenericSignatureELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift25PrecedenceGroupDescriptor13PathDirectionELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift10file_types2IDELb1EE5valueEv Line | Count | Source | 215 | 104 | T &value() &noexcept { | 216 | 104 | assert(hasVal); | 217 | 0 | return val; | 218 | 104 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift7FeatureEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageINS_8OptionalINS_9StringRefEEELb1EE5valueEv Line | Count | Source | 215 | 980 | T &value() &noexcept { | 216 | 980 | assert(hasVal); | 217 | 0 | return val; | 218 | 980 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_8ArrayRefINS_9StringRefEEELb1EE5valueEv _ZNR4llvm15optional_detail15OptionalStorageIN5swift19GeneratedSourceInfoELb1EE5valueEv Line | Count | Source | 215 | 3 | T &value() &noexcept { | 216 | 3 | assert(hasVal); | 217 | 0 | return val; | 218 | 3 | } |
Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift16BlockListKeyKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift15BlockListActionELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle4Node4KindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle16ValueWitnessKindELb1EE5valueEv Unexecuted instantiation: _ZNR4llvm15optional_detail15OptionalStorageIN5swift8Demangle10DirectnessELb1EE5valueEv |
219 | | LLVM_DEPRECATED("Use value instead.", "value") T &getValue() &noexcept { |
220 | | assert(hasVal); |
221 | | return val; |
222 | | } |
223 | 227k | constexpr T const &value() const &noexcept { |
224 | 227k | assert(hasVal); |
225 | 0 | return val; |
226 | 227k | } _ZNKR4llvm15optional_detail15OptionalStorageINS_5AlignELb1EE5valueEv Line | Count | Source | 223 | 230 | constexpr T const &value() const &noexcept { | 224 | 230 | assert(hasVal); | 225 | 0 | return val; | 226 | 230 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageImLb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EE5valueEv Line | Count | Source | 223 | 333 | constexpr T const &value() const &noexcept { | 224 | 333 | assert(hasVal); | 225 | 0 | return val; | 226 | 333 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoIPNS_8MDStringEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPNS_8MDStringELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_12DIExpression12FragmentInfoELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift6driver3Job16ResponseFileInfoELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift19TangentPropertyInfo5ErrorELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKindELb1EE5valueEv Line | Count | Source | 223 | 8 | constexpr T const &value() const &noexcept { | 224 | 8 | assert(hasVal); | 225 | 0 | return val; | 226 | 8 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes10ConventionELb1EE5valueEv Line | Count | Source | 223 | 23 | constexpr T const &value() const &noexcept { | 224 | 23 | assert(hasVal); | 225 | 0 | return val; | 226 | 23 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5swift8TypeReprELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIbLb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift12ModuleLoader23ModuleVersionSourceKindELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang11SourceRangeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang15CharSourceRangeELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIjLb1EE5valueEv Line | Count | Source | 223 | 124k | constexpr T const &value() const &noexcept { | 224 | 124k | assert(hasVal); | 225 | 0 | return val; | 226 | 124k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift16AttributedImportINS3_14ImportedModuleEEEEELb1EE5valueEv Line | Count | Source | 223 | 8.90k | constexpr T const &value() const &noexcept { | 224 | 8.90k | assert(hasVal); | 225 | 0 | return val; | 226 | 8.90k | } |
_ZNKR4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EE5valueEv Line | Count | Source | 223 | 12 | constexpr T const &value() const &noexcept { | 224 | 12 | assert(hasVal); | 225 | 0 | return val; | 226 | 12 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift18ReferenceOwnershipELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_15MemoryBufferRefELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIyLb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift21CopyPropagationOptionELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_7remarks14RemarkLocationELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPNS_5ValueELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_4wasm14WasmSymbolTypeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_4wasm14WasmGlobalTypeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_4wasm13WasmTableTypeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5clang19TemplateArgumentLocEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang14SourceLocationELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIhLb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKN5swift20ModuleDependencyInfoELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift15FrontendOptions25ClangHeaderExposeBehaviorELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift16OptionalTypeKindELb1EE5valueEv DiagnosticVerifier.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnLb1EE5valueEv Line | Count | Source | 223 | 24 | constexpr T const &value() const &noexcept { | 224 | 24 | assert(hasVal); | 225 | 0 | return val; | 226 | 24 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift15LineColumnRangeELb1EE5valueEv Line | Count | Source | 223 | 6 | constexpr T const &value() const &noexcept { | 224 | 6 | assert(hasVal); | 225 | 0 | return val; | 226 | 6 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift26IntermoduleDepTrackingModeELb1EE5valueEv Line | Count | Source | 223 | 74 | constexpr T const &value() const &noexcept { | 224 | 74 | assert(hasVal); | 225 | 0 | return val; | 226 | 74 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift13serialization6StatusELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TypeImportInfoINS_9StringRefEEELb1EE5valueEv Unexecuted instantiation: GenValueWitness.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetails12DirectResultELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift18GenericRequirementELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift5irgen14MetadataSourceELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift5irgen9AlignmentELb1EE5valueEv Line | Count | Source | 223 | 1 | constexpr T const &value() const &noexcept { | 224 | 1 | assert(hasVal); | 225 | 0 | return val; | 226 | 1 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EE5valueEv Line | Count | Source | 223 | 94 | constexpr T const &value() const &noexcept { | 224 | 94 | assert(hasVal); | 225 | 0 | return val; | 226 | 94 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKN5swift5irgen13FixedTypeInfoELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift16DiverseStackBase15stable_iteratorELb1EE5valueEv Line | Count | Source | 223 | 158 | constexpr T const &value() const &noexcept { | 224 | 158 | assert(hasVal); | 225 | 0 | return val; | 226 | 158 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift29SILFunctionTypeRepresentationELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift9MacroRoleELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EE5valueEv Line | Count | Source | 223 | 76 | constexpr T const &value() const &noexcept { | 224 | 76 | assert(hasVal); | 225 | 0 | return val; | 226 | 76 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKjLb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EE5valueEv Line | Count | Source | 223 | 6 | constexpr T const &value() const &noexcept { | 224 | 6 | assert(hasVal); | 225 | 0 | return val; | 226 | 6 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift10LoopRegion11SuccessorIDELb1EE5valueEv Line | Count | Source | 223 | 109 | constexpr T const &value() const &noexcept { | 224 | 109 | assert(hasVal); | 225 | 0 | return val; | 226 | 109 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EE5valueEv Unexecuted instantiation: DefiniteInitialization.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16DIKindELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalINS2_8SILValueEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalINS2_20DebugVarCarryingInstEEEEEEENS2_14FrozenMultiMapIjS8_NS5_6vectorISA_NS5_9allocatorISA_EEEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift20DebugVarCarryingInstELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EE5valueEv Line | Count | Source | 223 | 4.60k | constexpr T const &value() const &noexcept { | 224 | 4.60k | assert(hasVal); | 225 | 0 | return val; | 226 | 4.60k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalIPNS2_22SingleValueInstructionEEEEEEENS2_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5swift22SingleValueInstructionELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalIS7_EEEEEENS2_14FrozenMultiMapIS7_S7_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift12SILSuccessor13pred_iteratorELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift16BuiltinValueKindELb1EE5valueEv Line | Count | Source | 223 | 55.6k | constexpr T const &value() const &noexcept { | 224 | 55.6k | assert(hasVal); | 225 | 0 | return val; | 226 | 55.6k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalINS2_11semanticarc7Context21ConsumingOperandStateEEEEEEENS2_14FrozenMultiMapIS7_SB_NS5_6vectorISD_NS5_9allocatorISD_EEEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift17AccessStorageCastELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift22LoadOwnershipQualifierELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKN5swift6markup20LocalizationKeyFieldELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKN5swift6markup9ParagraphELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKN5swift6markup12ReturnsFieldELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPKN5swift6markup11ThrowsFieldELb1EE5valueEv Unexecuted instantiation: Formatting.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115ContextOverride8OverrideELb1EE5valueEv Unexecuted instantiation: Formatting.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113IndentContextELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift5TokenELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo11MSVCRuntimeELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift21DifferentiabilityKindELb1EE5valueEv Line | Count | Source | 223 | 1.80k | constexpr T const &value() const &noexcept { | 224 | 1.80k | assert(hasVal); | 225 | 0 | return val; | 226 | 1.80k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang8QualTypeELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5clang11ConceptDeclELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5clang12TemplateNameELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5clang7TagDeclELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5clang20TemplateTypeParmDeclELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14ImportedModuleELb1EE5valueEv Line | Count | Source | 223 | 34 | constexpr T const &value() const &noexcept { | 224 | 34 | assert(hasVal); | 225 | 0 | return val; | 226 | 34 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EE5valueEv Line | Count | Source | 223 | 335 | constexpr T const &value() const &noexcept { | 224 | 335 | assert(hasVal); | 225 | 0 | return val; | 226 | 335 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EE5valueEv Line | Count | Source | 223 | 264 | constexpr T const &value() const &noexcept { | 224 | 264 | assert(hasVal); | 225 | 0 | return val; | 226 | 264 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift17ProfileCounterRefELb1EE5valueEv Unexecuted instantiation: SILProfiler.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift17TransformIteratorIPNS2_12SILSuccessorEPFPNS2_13SILBasicBlockERKS4_EEELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift13AccessStorageELb1EE5valueEv Line | Count | Source | 223 | 2.93k | constexpr T const &value() const &noexcept { | 224 | 2.93k | assert(hasVal); | 225 | 0 | return val; | 226 | 2.93k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift10ProjectionELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIPN5swift7OperandELb1EE5valueEv Line | Count | Source | 223 | 245 | constexpr T const &value() const &noexcept { | 224 | 245 | assert(hasVal); | 225 | 0 | return val; | 226 | 245 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11TaggedUnionIJPNS2_11SILFunctionEPNS2_13SILBasicBlockEEEELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints9ScoreKindELb1EE5valueEv Line | Count | Source | 223 | 1 | constexpr T const &value() const &noexcept { | 224 | 1 | assert(hasVal); | 225 | 0 | return val; | 226 | 1 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints18ContextualTypeInfoELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints23TrailingClosureMatchingELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints25ConversionRestrictionKindELb1EE5valueEv Line | Count | Source | 223 | 2 | constexpr T const &value() const &noexcept { | 224 | 2 | assert(hasVal); | 225 | 0 | return val; | 226 | 2 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EE5valueEv Line | Count | Source | 223 | 2 | constexpr T const &value() const &noexcept { | 224 | 2 | assert(hasVal); | 225 | 0 | return val; | 226 | 2 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift21ContextualTypePurposeELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints17ConstraintLocator11PathElementELb1EE5valueEv Line | Count | Source | 223 | 20.0k | constexpr T const &value() const &noexcept { | 224 | 20.0k | assert(hasVal); | 225 | 0 | return val; | 226 | 20.0k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11constraints16IUOReferenceKindELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift19ExportabilityReasonELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift16AttributedImportINS2_14ImportedModuleEEELb1EE5valueEv Unexecuted instantiation: TypeCheckAvailability.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ReplacementDeclKindELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift13SendableCheckELb1EE5valueEv Line | Count | Source | 223 | 30 | constexpr T const &value() const &noexcept { | 224 | 30 | assert(hasVal); | 225 | 0 | return val; | 226 | 30 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift12VarRefUseEnvELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift22AutomaticEnumValueKindELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift18StaticSpellingKindELb1EE5valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift14AnyFunctionRefELb1EE5valueEv Line | Count | Source | 223 | 140 | constexpr T const &value() const &noexcept { | 224 | 140 | assert(hasVal); | 225 | 0 | return val; | 226 | 140 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift16BuiltinMacroKindELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift22RequirementEnvironmentELb1EE5valueEv Line | Count | Source | 223 | 234 | constexpr T const &value() const &noexcept { | 224 | 234 | assert(hasVal); | 225 | 0 | return val; | 226 | 234 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift26KnownDerivableProtocolKindELb1EE5valueEv Line | Count | Source | 223 | 1.29k | constexpr T const &value() const &noexcept { | 224 | 1.29k | assert(hasVal); | 225 | 0 | return val; | 226 | 1.29k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift19AbstractTypeWitnessELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift19TypeWitnessConflictELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageI20LayoutConstraintKindLb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift19TypeResolutionStageELb1EE5valueEv Line | Count | Source | 223 | 34 | constexpr T const &value() const &noexcept { | 224 | 34 | assert(hasVal); | 225 | 0 | return val; | 226 | 34 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EE5valueEv Line | Count | Source | 223 | 331 | constexpr T const &value() const &noexcept { | 224 | 331 | assert(hasVal); | 225 | 0 | return val; | 226 | 331 | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5clang6ModuleELb1EE5valueEv Unexecuted instantiation: ImportName.cpp:_ZNKR4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_116AnySwiftNameAttrELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift21PlatformConditionKindELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift20TypeTransformContextELb1EE5valueEv Line | Count | Source | 223 | 1 | constexpr T const &value() const &noexcept { | 224 | 1 | assert(hasVal); | 225 | 0 | return val; | 226 | 1 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EE5valueEv Line | Count | Source | 223 | 1 | constexpr T const &value() const &noexcept { | 224 | 1 | assert(hasVal); | 225 | 0 | return val; | 226 | 1 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift17KnownProtocolKindELb1EE5valueEv Line | Count | Source | 223 | 222 | constexpr T const &value() const &noexcept { | 224 | 222 | assert(hasVal); | 225 | 0 | return val; | 226 | 222 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIN5swift14ParamSpecifierELb1EE5valueEv Line | Count | Source | 223 | 4.62k | constexpr T const &value() const &noexcept { | 224 | 4.62k | assert(hasVal); | 225 | 0 | return val; | 226 | 4.62k | } |
Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5swift11InitializerELb1EE5valueEv Unexecuted instantiation: _ZNKR4llvm15optional_detail15OptionalStorageIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerELb1EE5valueEv _ZNKR4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EE5valueEv Line | Count | Source | 223 | 6 | constexpr T const &value() const &noexcept { | 224 | 6 | assert(hasVal); | 225 | 0 | return val; | 226 | 6 | } |
_ZNKR4llvm15optional_detail15OptionalStorageIiLb1EE5valueEv Line | Count | Source | 223 | 2 | constexpr T const &value() const &noexcept { | 224 | 2 | assert(hasVal); | 225 | 0 | return val; | 226 | 2 | } |
|
227 | | LLVM_DEPRECATED("Use value instead.", "value") |
228 | | constexpr T const &getValue() const &noexcept { |
229 | | assert(hasVal); |
230 | | return val; |
231 | | } |
232 | | T &&value() &&noexcept { |
233 | | assert(hasVal); |
234 | | return std::move(val); |
235 | | } |
236 | | LLVM_DEPRECATED("Use value instead.", "value") T &&getValue() &&noexcept { |
237 | | assert(hasVal); |
238 | | return std::move(val); |
239 | | } |
240 | | |
241 | 1.49k | template <class... Args> void emplace(Args &&...args) { |
242 | 1.49k | reset(); |
243 | 1.49k | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); |
244 | 1.49k | hasVal = true; |
245 | 1.49k | } _ZN4llvm15optional_detail15OptionalStorageINS_5AlignELb1EE7emplaceIJRyEEEvDpOT_ Line | Count | Source | 241 | 450 | template <class... Args> void emplace(Args &&...args) { | 242 | 450 | reset(); | 243 | 450 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 450 | hasVal = true; | 245 | 450 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoIPNS_8MDStringEEELb1EE7emplaceIJRNS2_12ChecksumKindES5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_6DIFile12ChecksumInfoINS_9StringRefEEELb1EE7emplaceIJRKNS2_12ChecksumKindES4_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIjLb1EE7emplaceIJRKjEEEvDpOT_ Line | Count | Source | 241 | 8 | template <class... Args> void emplace(Args &&...args) { | 242 | 8 | reset(); | 243 | 8 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 8 | hasVal = true; | 245 | 8 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering14CalleeTypeInfoELb1EE7emplaceIJS4_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EE7emplaceIJRPNS2_27RebindSelfInConstructorExprEEEEvDpOT_ Line | Count | Source | 241 | 1 | template <class... Args> void emplace(Args &&...args) { | 242 | 1 | reset(); | 243 | 1 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 1 | hasVal = true; | 245 | 1 | } |
_ZN4llvm15optional_detail15OptionalStorageIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEELb1EE7emplaceIJS8_EEEvDpOT_ Line | Count | Source | 241 | 973 | template <class... Args> void emplace(Args &&...args) { | 242 | 973 | reset(); | 243 | 973 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 973 | hasVal = true; | 245 | 973 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalINS2_8SILValueEEEEEEENS2_14FrozenMultiMapIS8_SA_NS_11SmallVectorISC_Lj8EEEE15PairToSecondEltEEELb1EE7emplaceIJRSD_SI_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_14SILInstructionENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE7emplaceIJRSE_SJ_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalINS2_20DebugVarCarryingInstEEEEEEENS2_14FrozenMultiMapIjS8_NS5_6vectorISA_NS5_9allocatorISA_EEEEE15PairToSecondEltEEELb1EE7emplaceIJRSB_SI_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS_8OptionalIPNS2_22SingleValueInstructionEEEEEEENS2_14FrozenMultiMapIjS9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEELb1EE7emplaceIJRSC_SH_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalIS7_EEEEEENS2_14FrozenMultiMapIS7_S7_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEELb1EE7emplaceIJRSB_SG_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12SILSuccessor13pred_iteratorELb1EE7emplaceIJS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS2_8SILValueENS_8OptionalINS2_11semanticarc7Context21ConsumingOperandStateEEEEEEENS2_14FrozenMultiMapIS7_SB_NS5_6vectorISD_NS5_9allocatorISD_EEEEE15PairToSecondEltEEELb1EE7emplaceIJRSE_SL_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EE7emplaceIJRNS2_8SILValueERPNS2_22SingleValueInstructionEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ConcreteExistentialInfoELb1EE7emplaceIJRNS2_8SILValueERPNS2_22SingleValueInstructionERNS2_7CanTypeERPNS2_12ProtocolDeclEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang22OverloadedOperatorKindELb1EE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17TransformIteratorIPNS2_12SILSuccessorEPFPNS2_13SILBasicBlockERKS4_EEELb1EE7emplaceIJSC_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS2_13SILBasicBlockENS_8OptionalIPNS2_7OperandEEEEEEENS2_14FrozenMultiMapIS8_SB_NS_11SmallVectorISD_Lj8EEEE15PairToSecondEltEEELb1EE7emplaceIJRSE_SJ_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeBaseELb1EE7emplaceIJRPNS2_16TypeVariableTypeEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints9inference16PotentialBindingELb1EE7emplaceIJRKS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageI19RuntimeVersionCheckLb1EE7emplaceIJRKN5swift12PlatformKindERKNS_12VersionTupleEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EE7emplaceIJS3_EEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift12StableHasherELb1EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 241 | 11 | template <class... Args> void emplace(Args &&...args) { | 242 | 11 | reset(); | 243 | 11 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 11 | hasVal = true; | 245 | 11 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift7VarDeclEEELb1EE7emplaceIJRS6_EEEvDpOT_ Line | Count | Source | 241 | 12 | template <class... Args> void emplace(Args &&...args) { | 242 | 12 | reset(); | 243 | 12 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 12 | hasVal = true; | 245 | 12 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EE7emplaceIJRNS2_7CanTypeERNS2_16ResultConventionEEEEvDpOT_ _ZN4llvm15optional_detail15OptionalStorageIN5swift20ImplicitMemberActionELb1EE7emplaceIJS3_EEEvDpOT_ Line | Count | Source | 241 | 42 | template <class... Args> void emplace(Args &&...args) { | 242 | 42 | reset(); | 243 | 42 | ::new ((void *)std::addressof(val)) T(std::forward<Args>(args)...); | 244 | 42 | hasVal = true; | 245 | 42 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersELb1EE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersELb1EE7emplaceIJEEEvDpOT_ |
246 | | |
247 | 65.2k | OptionalStorage &operator=(T const &y) { |
248 | 65.2k | if (has_value()) { |
249 | 633 | val = y; |
250 | 64.6k | } else { |
251 | 64.6k | ::new ((void *)std::addressof(val)) T(y); |
252 | 64.6k | hasVal = true; |
253 | 64.6k | } |
254 | 65.2k | return *this; |
255 | 65.2k | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageImLb1EEaSERKm Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIbLb1EEaSERKb _ZN4llvm15optional_detail15OptionalStorageIN5swift30AutoDiffDerivativeFunctionKindELb1EEaSERKS3_ Line | Count | Source | 247 | 8 | OptionalStorage &operator=(T const &y) { | 248 | 8 | if (has_value()) { | 249 | 0 | val = y; | 250 | 8 | } else { | 251 | 8 | ::new ((void *)std::addressof(val)) T(y); | 252 | 8 | hasVal = true; | 253 | 8 | } | 254 | 8 | return *this; | 255 | 8 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12ModuleLoader23ModuleVersionSourceKindELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15SubstitutionMapELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EEaSERKS2_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EEaSERKS3_ Line | Count | Source | 247 | 36 | OptionalStorage &operator=(T const &y) { | 248 | 36 | if (has_value()) { | 249 | 0 | val = y; | 250 | 36 | } else { | 251 | 36 | ::new ((void *)std::addressof(val)) T(y); | 252 | 36 | hasVal = true; | 253 | 36 | } | 254 | 36 | return *this; | 255 | 36 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EEaSERKS3_ Line | Count | Source | 247 | 130 | OptionalStorage &operator=(T const &y) { | 248 | 130 | if (has_value()) { | 249 | 0 | val = y; | 250 | 130 | } else { | 251 | 130 | ::new ((void *)std::addressof(val)) T(y); | 252 | 130 | hasVal = true; | 253 | 130 | } | 254 | 130 | return *this; | 255 | 130 | } |
_ZN4llvm15optional_detail15OptionalStorageIjLb1EEaSERKj Line | Count | Source | 247 | 42.1k | OptionalStorage &operator=(T const &y) { | 248 | 42.1k | if (has_value()) { | 249 | 519 | val = y; | 250 | 41.6k | } else { | 251 | 41.6k | ::new ((void *)std::addressof(val)) T(y); | 252 | 41.6k | hasVal = true; | 253 | 41.6k | } | 254 | 42.1k | return *this; | 255 | 42.1k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_4wasm14WasmSymbolTypeELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_4wasm14WasmGlobalTypeELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_4wasm13WasmTableTypeELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIhLb1EEaSERKh Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift3ide3api7SDKNodeELb1EEaSERKS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang14SourceLocationELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang12LookupResult13AmbiguityKindELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api14NodeAnnotationELb1EEaSERKS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13serialization6StatusELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIyLb1EEaSERKy _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen11ClassLayoutELb1EEaSERKS4_ Line | Count | Source | 247 | 2 | OptionalStorage &operator=(T const &y) { | 248 | 2 | if (has_value()) { | 249 | 0 | val = y; | 250 | 2 | } else { | 251 | 2 | ::new ((void *)std::addressof(val)) T(y); | 252 | 2 | hasVal = true; | 253 | 2 | } | 254 | 2 | return *this; | 255 | 2 | } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoELb1EEaSERKS5_ Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_119LinearFuncFieldInfoELb1EEaSERKS5_ Unexecuted instantiation: GenStruct.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114ClangFieldInfoELb1EEaSERKS5_ GenStruct.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_115StructFieldInfoELb1EEaSERKS5_ Line | Count | Source | 247 | 5 | OptionalStorage &operator=(T const &y) { | 248 | 5 | if (has_value()) { | 249 | 0 | val = y; | 250 | 5 | } else { | 251 | 5 | ::new ((void *)std::addressof(val)) T(y); | 252 | 5 | hasVal = true; | 253 | 5 | } | 254 | 5 | return *this; | 255 | 5 | } |
Unexecuted instantiation: GenTuple.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114TupleFieldInfoELb1EEaSERKS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14TargetLowering11PtrAuthInfoELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13OperationCostELb1EEaSERKS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EEaSERKS4_ Line | Count | Source | 247 | 16 | OptionalStorage &operator=(T const &y) { | 248 | 16 | if (has_value()) { | 249 | 0 | val = y; | 250 | 16 | } else { | 251 | 16 | ::new ((void *)std::addressof(val)) T(y); | 252 | 16 | hasVal = true; | 253 | 16 | } | 254 | 16 | return *this; | 255 | 16 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen4SizeEEELb1EEaSERKS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift5irgen13FixedTypeInfoELb1EEaSERKS6_ _ZN4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EEaSERKS3_ Line | Count | Source | 247 | 138 | OptionalStorage &operator=(T const &y) { | 248 | 138 | if (has_value()) { | 249 | 0 | val = y; | 250 | 138 | } else { | 251 | 138 | ::new ((void *)std::addressof(val)) T(y); | 252 | 138 | hasVal = true; | 253 | 138 | } | 254 | 138 | return *this; | 255 | 138 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12ProtocolDeclELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8FuncDeclELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift18AssociatedTypeDeclELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift7VarDeclELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering12ManagedValueELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15AnyFunctionTypeEEELb1EEaSERKS5_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EEaSERKS3_ Line | Count | Source | 247 | 6 | OptionalStorage &operator=(T const &y) { | 248 | 6 | if (has_value()) { | 249 | 0 | val = y; | 250 | 6 | } else { | 251 | 6 | ::new ((void *)std::addressof(val)) T(y); | 252 | 6 | hasVal = true; | 253 | 6 | } | 254 | 6 | return *this; | 255 | 6 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift10LoopRegion11SuccessorIDELb1EEaSERKS4_ Line | Count | Source | 247 | 108 | OptionalStorage &operator=(T const &y) { | 248 | 108 | if (has_value()) { | 249 | 108 | val = y; | 250 | 108 | } else { | 251 | 0 | ::new ((void *)std::addressof(val)) T(y); | 252 | 0 | hasVal = true; | 253 | 0 | } | 254 | 108 | return *this; | 255 | 108 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15SILFunctionTypeEEELb1EEaSERKS5_ Line | Count | Source | 247 | 4 | OptionalStorage &operator=(T const &y) { | 248 | 4 | if (has_value()) { | 249 | 0 | val = y; | 250 | 4 | } else { | 251 | 4 | ::new ((void *)std::addressof(val)) T(y); | 252 | 4 | hasVal = true; | 253 | 4 | } | 254 | 4 | return *this; | 255 | 4 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift14SILInstructionELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21TypeTreeLeafTypeRangeELb1EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EEaSERKS3_ Line | Count | Source | 247 | 4.60k | OptionalStorage &operator=(T const &y) { | 248 | 4.60k | if (has_value()) { | 249 | 0 | val = y; | 250 | 4.60k | } else { | 251 | 4.60k | ::new ((void *)std::addressof(val)) T(y); | 252 | 4.60k | hasVal = true; | 253 | 4.60k | } | 254 | 4.60k | return *this; | 255 | 4.60k | } |
Unexecuted instantiation: YieldOnceCheck.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift15EnumElementDeclELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift10ModuleDeclELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13CapturedValueELb1EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EEaSERKS4_ Line | Count | Source | 247 | 69 | OptionalStorage &operator=(T const &y) { | 248 | 69 | if (has_value()) { | 249 | 0 | val = y; | 250 | 69 | } else { | 251 | 69 | ::new ((void *)std::addressof(val)) T(y); | 252 | 69 | hasVal = true; | 253 | 69 | } | 254 | 69 | return *this; | 255 | 69 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift20AccessRepresentation4KindELb1EEaSERKS4_ Line | Count | Source | 247 | 4.15k | OptionalStorage &operator=(T const &y) { | 248 | 4.15k | if (has_value()) { | 249 | 0 | val = y; | 250 | 4.15k | } else { | 251 | 4.15k | ::new ((void *)std::addressof(val)) T(y); | 252 | 4.15k | hasVal = true; | 253 | 4.15k | } | 254 | 4.15k | return *this; | 255 | 4.15k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift17AccessStorageCastELb1EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13AccessStorageELb1EEaSERKS3_ Line | Count | Source | 247 | 2.93k | OptionalStorage &operator=(T const &y) { | 248 | 2.93k | if (has_value()) { | 249 | 0 | val = y; | 250 | 2.93k | } else { | 251 | 2.93k | ::new ((void *)std::addressof(val)) T(y); | 252 | 2.93k | hasVal = true; | 253 | 2.93k | } | 254 | 2.93k | return *this; | 255 | 2.93k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EEaSERKS3_ Line | Count | Source | 247 | 148 | OptionalStorage &operator=(T const &y) { | 248 | 148 | if (has_value()) { | 249 | 0 | val = y; | 250 | 148 | } else { | 251 | 148 | ::new ((void *)std::addressof(val)) T(y); | 252 | 148 | hasVal = true; | 253 | 148 | } | 254 | 148 | return *this; | 255 | 148 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9SILParser19UnresolvedValueNameELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EEaSERKS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints5ScoreELb1EEaSERKS4_ Line | Count | Source | 247 | 674 | OptionalStorage &operator=(T const &y) { | 248 | 674 | if (has_value()) { | 249 | 6 | val = y; | 250 | 668 | } else { | 251 | 668 | ::new ((void *)std::addressof(val)) T(y); | 252 | 668 | hasVal = true; | 253 | 668 | } | 254 | 674 | return *this; | 255 | 674 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints14OverloadChoiceELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJEEELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12PlatformKindELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AvailabilityContextELb1EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EEaSERKS3_ Line | Count | Source | 247 | 14 | OptionalStorage &operator=(T const &y) { | 248 | 14 | if (has_value()) { | 249 | 0 | val = y; | 250 | 14 | } else { | 251 | 14 | ::new ((void *)std::addressof(val)) T(y); | 252 | 14 | hasVal = true; | 253 | 14 | } | 254 | 14 | return *this; | 255 | 14 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift9ParamDeclELb1EEaSERKS4_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121PotentialEffectReasonELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15CheckedCastKindELb1EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14AutoDiffConfigELb1EEaSERKS3_ Line | Count | Source | 247 | 1 | OptionalStorage &operator=(T const &y) { | 248 | 1 | if (has_value()) { | 249 | 0 | val = y; | 250 | 1 | } else { | 251 | 1 | ::new ((void *)std::addressof(val)) T(y); | 252 | 1 | hasVal = true; | 253 | 1 | } | 254 | 1 | return *this; | 255 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4DiagIJNS2_4TypeES4_EEELb1EEaSERKS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19ProtocolConformanceELb1EEaSERKS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5clang13SwiftAttrAttrELb1EEaSERKS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EEaSERKS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes10ConventionELb1EEaSERKS4_ Line | Count | Source | 247 | 30 | OptionalStorage &operator=(T const &y) { | 248 | 30 | if (has_value()) { | 249 | 0 | val = y; | 250 | 30 | } else { | 251 | 30 | ::new ((void *)std::addressof(val)) T(y); | 252 | 30 | hasVal = true; | 253 | 30 | } | 254 | 30 | return *this; | 255 | 30 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5TokenELb1EEaSERKS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle18ImplFunctionResultINS2_4TypeEEELb1EEaSERKS6_ _ZN4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EEaSERKS2_ Line | Count | Source | 247 | 1 | OptionalStorage &operator=(T const &y) { | 248 | 1 | if (has_value()) { | 249 | 0 | val = y; | 250 | 1 | } else { | 251 | 1 | ::new ((void *)std::addressof(val)) T(y); | 252 | 1 | hasVal = true; | 253 | 1 | } | 254 | 1 | return *this; | 255 | 1 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift20RequirementSignatureELb1EEaSERKS3_ Line | Count | Source | 247 | 329 | OptionalStorage &operator=(T const &y) { | 248 | 329 | if (has_value()) { | 249 | 0 | val = y; | 250 | 329 | } else { | 251 | 329 | ::new ((void *)std::addressof(val)) T(y); | 252 | 329 | hasVal = true; | 253 | 329 | } | 254 | 329 | return *this; | 255 | 329 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup12ReturnsFieldELb1EEaSERKS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup11ThrowsFieldELb1EEaSERKS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup20LocalizationKeyFieldELb1EEaSERKS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKN5swift6markup9ParagraphELb1EEaSERKS6_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16AttributedImportINS2_14ImportedModuleEEELb1EEaSERKS5_ Line | Count | Source | 247 | 2.49k | OptionalStorage &operator=(T const &y) { | 248 | 2.49k | if (has_value()) { | 249 | 0 | val = y; | 250 | 2.49k | } else { | 251 | 2.49k | ::new ((void *)std::addressof(val)) T(y); | 252 | 2.49k | hasVal = true; | 253 | 2.49k | } | 254 | 2.49k | return *this; | 255 | 2.49k | } |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift9rewriting11PropertyBagELb1EEaSERKS5_ Line | Count | Source | 247 | 6.03k | OptionalStorage &operator=(T const &y) { | 248 | 6.03k | if (has_value()) { | 249 | 0 | val = y; | 250 | 6.03k | } else { | 251 | 6.03k | ::new ((void *)std::addressof(val)) T(y); | 252 | 6.03k | hasVal = true; | 253 | 6.03k | } | 254 | 6.03k | return *this; | 255 | 6.03k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EEaSERKS4_ Line | Count | Source | 247 | 1.19k | OptionalStorage &operator=(T const &y) { | 248 | 1.19k | if (has_value()) { | 249 | 0 | val = y; | 250 | 1.19k | } else { | 251 | 1.19k | ::new ((void *)std::addressof(val)) T(y); | 252 | 1.19k | hasVal = true; | 253 | 1.19k | } | 254 | 1.19k | return *this; | 255 | 1.19k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EEaSERKS3_ Line | Count | Source | 247 | 4 | OptionalStorage &operator=(T const &y) { | 248 | 4 | if (has_value()) { | 249 | 0 | val = y; | 250 | 4 | } else { | 251 | 4 | ::new ((void *)std::addressof(val)) T(y); | 252 | 4 | hasVal = true; | 253 | 4 | } | 254 | 4 | return *this; | 255 | 4 | } |
|
256 | 58.8k | OptionalStorage &operator=(T &&y) { |
257 | 58.8k | if (has_value()) { |
258 | 1.54k | val = std::move(y); |
259 | 57.2k | } else { |
260 | 57.2k | ::new ((void *)std::addressof(val)) T(std::move(y)); |
261 | 57.2k | hasVal = true; |
262 | 57.2k | } |
263 | 58.8k | return *this; |
264 | 58.8k | } Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPKcLb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIbLb1EEaSEOb Line | Count | Source | 256 | 12.6k | OptionalStorage &operator=(T &&y) { | 257 | 12.6k | if (has_value()) { | 258 | 455 | val = std::move(y); | 259 | 12.1k | } else { | 260 | 12.1k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 12.1k | hasVal = true; | 262 | 12.1k | } | 263 | 12.6k | return *this; | 264 | 12.6k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12DenormalMode16DenormalModeKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes19OpaqueReturnTypeRefELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift10ASTExtInfoELb1EEaSEOS3_ Line | Count | Source | 256 | 24.9k | OptionalStorage &operator=(T &&y) { | 257 | 24.9k | if (has_value()) { | 258 | 369 | val = std::move(y); | 259 | 24.5k | } else { | 260 | 24.5k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 24.5k | hasVal = true; | 262 | 24.5k | } | 263 | 24.9k | return *this; | 264 | 24.9k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ApplyIsolationCrossingELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19PatternBindingState4KindELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21CopyPropagationOptionELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageImLb1EEaSEOm _ZN4llvm15optional_detail15OptionalStorageINS_9StringRefELb1EEaSEOS2_ Line | Count | Source | 256 | 1.50k | OptionalStorage &operator=(T &&y) { | 257 | 1.50k | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 1.50k | } else { | 260 | 1.50k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 1.50k | hasVal = true; | 262 | 1.50k | } | 263 | 1.50k | return *this; | 264 | 1.50k | } |
_ZN4llvm15optional_detail15OptionalStorageIjLb1EEaSEOj Line | Count | Source | 256 | 8.03k | OptionalStorage &operator=(T &&y) { | 257 | 8.03k | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 8.03k | } else { | 260 | 8.03k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 8.03k | hasVal = true; | 262 | 8.03k | } | 263 | 8.03k | return *this; | 264 | 8.03k | } |
Unexecuted instantiation: swift_cache_tool_main.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120SwiftCacheToolActionELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11AccessLevelELb1EEaSEOS3_ Line | Count | Source | 256 | 39 | OptionalStorage &operator=(T &&y) { | 257 | 39 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 39 | } else { | 260 | 39 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 39 | hasVal = true; | 262 | 39 | } | 263 | 39 | return *this; | 264 | 39 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20ModuleDependencyKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES5_EEELb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_3cas9ObjectRefELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27UnavailableDeclOptimizationEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift17StrictConcurrencyEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift18DiagnosticBehaviorELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16ConcurrencyModelELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIbEELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21DestroyHoistingOptionEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21CopyPropagationOptionEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16JITDebugArtifactEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift16IRGenLLVMLTOKindEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12VersionTupleELb1EEaSEOS2_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_12function_refIFvvEEELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift26IntermoduleDepTrackingModeELb1EEaSEOS3_ Line | Count | Source | 256 | 72 | OptionalStorage &operator=(T &&y) { | 257 | 72 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 72 | } else { | 260 | 72 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 72 | hasVal = true; | 262 | 72 | } | 263 | 72 | return *this; | 264 | 72 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api7KeyKindEEELb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIhLb1EEaSEOh _ZN4llvm15optional_detail15OptionalStorageIN5swift12AccessorKindELb1EEaSEOS3_ Line | Count | Source | 256 | 1 | OptionalStorage &operator=(T &&y) { | 257 | 1 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 1 | } else { | 260 | 1 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 1 | hasVal = true; | 262 | 1 | } | 263 | 1 | return *this; | 264 | 1 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8DeclKindEEELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11SILAnalysis16InvalidationKindELb1EEaSEOS4_ Line | Count | Source | 256 | 4 | OptionalStorage &operator=(T &&y) { | 257 | 4 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 4 | } else { | 260 | 4 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 4 | hasVal = true; | 262 | 4 | } | 263 | 4 | return *this; | 264 | 4 | } |
_ZN4llvm15optional_detail15OptionalStorageIyLb1EEaSEOy Line | Count | Source | 256 | 129 | OptionalStorage &operator=(T &&y) { | 257 | 129 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 129 | } else { | 260 | 129 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 129 | hasVal = true; | 262 | 129 | } | 263 | 129 | return *this; | 264 | 129 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_13AtomicRMWInst5BinOpELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen28SignatureExpansionABIDetails12DirectResultELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPNS_5ValueELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen7AddressELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIPNS_5ValueEEELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen10LinkEntityELb1EEaSEOS4_ Line | Count | Source | 256 | 22 | OptionalStorage &operator=(T &&y) { | 257 | 22 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 22 | } else { | 260 | 22 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 22 | hasVal = true; | 262 | 22 | } | 263 | 22 | return *this; | 264 | 22 | } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoELb1EEaSEOS5_ Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_119LinearFuncFieldInfoELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen9AtomicityELb1EEaSEOS4_ Line | Count | Source | 256 | 8 | OptionalStorage &operator=(T &&y) { | 257 | 8 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 8 | } else { | 260 | 8 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 8 | hasVal = true; | 262 | 8 | } | 263 | 8 | return *this; | 264 | 8 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19ParameterConventionELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPNS_4TypeELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen12StackAddressELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen19TypeEntityReferenceELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionELb1EEaSEOS5_ Line | Count | Source | 256 | 10 | OptionalStorage &operator=(T &&y) { | 257 | 10 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 10 | } else { | 260 | 10 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 10 | hasVal = true; | 262 | 10 | } | 263 | 10 | return *this; | 264 | 10 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPNS_9InlineAsmELb1EEaSEOS3_ Unexecuted instantiation: GenStruct.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114ClangFieldInfoELb1EEaSEOS5_ Unexecuted instantiation: GenStruct.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_115StructFieldInfoELb1EEaSEOS5_ Unexecuted instantiation: GenTuple.cpp:_ZN4llvm15optional_detail15OptionalStorageIPKN12_GLOBAL__N_114TupleFieldInfoELb1EEaSEOS5_ Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_9CodeModel5ModelELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen13OperationCostELb1EEaSEOS4_ Line | Count | Source | 256 | 2 | OptionalStorage &operator=(T &&y) { | 257 | 2 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 2 | } else { | 260 | 2 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 2 | hasVal = true; | 262 | 2 | } | 263 | 2 | return *this; | 264 | 2 | } |
_ZN4llvm15optional_detail15OptionalStorageIxLb1EEaSEOx Line | Count | Source | 256 | 7 | OptionalStorage &operator=(T &&y) { | 257 | 7 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 7 | } else { | 260 | 7 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 7 | hasVal = true; | 262 | 7 | } | 263 | 7 | return *this; | 264 | 7 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIhEELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen4SizeEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift5irgen9AlignmentEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIjEELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPNS_8ConstantELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift5irgen4SizeELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7RT_KindELb1EEaSEOS3_ Line | Count | Source | 256 | 82 | OptionalStorage &operator=(T &&y) { | 257 | 82 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 82 | } else { | 260 | 82 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 82 | hasVal = true; | 262 | 82 | } | 263 | 82 | return *this; | 264 | 82 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8FuncDeclELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift7VarDeclELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift19ProtocolConformanceELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10SILDeclRefELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14ActorIsolationELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift4TypeELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift8Lowering18AbstractionPatternELb1EEaSEOS4_ Line | Count | Source | 256 | 185 | OptionalStorage &operator=(T &&y) { | 257 | 185 | if (has_value()) { | 258 | 116 | val = std::move(y); | 259 | 116 | } else { | 260 | 69 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 69 | hasVal = true; | 262 | 69 | } | 263 | 185 | return *this; | 264 | 185 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift12ProtocolDeclELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14CanTypeWrapperINS2_15AnyFunctionTypeEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15SubstitutionMapELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILAccessKindELb1EEaSEOS3_ Line | Count | Source | 256 | 9 | OptionalStorage &operator=(T &&y) { | 257 | 9 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 9 | } else { | 260 | 9 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 9 | hasVal = true; | 262 | 9 | } | 263 | 9 | return *this; | 264 | 9 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift13ArrayCallKindELb1EEaSEOS3_ Line | Count | Source | 256 | 70 | OptionalStorage &operator=(T &&y) { | 257 | 70 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 70 | } else { | 260 | 70 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 70 | hasVal = true; | 262 | 70 | } | 263 | 70 | return *this; | 264 | 70 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift14AutoDiffConfigELb1EEaSEOS3_ Line | Count | Source | 256 | 3 | OptionalStorage &operator=(T &&y) { | 257 | 3 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 3 | } else { | 260 | 3 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 3 | hasVal = true; | 262 | 3 | } | 263 | 3 | return *this; | 264 | 3 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift16SILParameterInfoELb1EEaSEOS3_ Line | Count | Source | 256 | 582 | OptionalStorage &operator=(T &&y) { | 257 | 582 | if (has_value()) { | 258 | 582 | val = std::move(y); | 259 | 582 | } else { | 260 | 0 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 0 | hasVal = true; | 262 | 0 | } | 263 | 582 | return *this; | 264 | 582 | } |
DefiniteInitialization.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_16DIKindELb1EEaSEOS3_ Line | Count | Source | 256 | 16 | OptionalStorage &operator=(T &&y) { | 257 | 16 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 16 | } else { | 260 | 16 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 16 | hasVal = true; | 262 | 16 | } | 263 | 16 | return *this; | 264 | 16 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10IdentifierELb1EEaSEOS3_ DiagnoseStaticExclusivity.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114RecordedAccessELb1EEaSEOS3_ Line | Count | Source | 256 | 21 | OptionalStorage &operator=(T &&y) { | 257 | 21 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 21 | } else { | 260 | 21 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 21 | hasVal = true; | 262 | 21 | } | 263 | 21 | return *this; | 264 | 21 | } |
Unexecuted instantiation: YieldOnceCheck.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8SILValueELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7SILTypeELb1EEaSEOS3_ Line | Count | Source | 256 | 82 | OptionalStorage &operator=(T &&y) { | 257 | 82 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 82 | } else { | 260 | 82 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 82 | hasVal = true; | 262 | 82 | } | 263 | 82 | return *this; | 264 | 82 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8PassKindELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift21MarkUninitializedInst4KindELb1EEaSEOS4_ Line | Count | Source | 256 | 5 | OptionalStorage &operator=(T &&y) { | 257 | 5 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 5 | } else { | 260 | 5 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 5 | hasVal = true; | 262 | 5 | } | 263 | 5 | return *this; | 264 | 5 | } |
SILMem2Reg.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_120StorageStateTrackingINS2_10LiveValuesEEELb1EEaSEOS5_ Line | Count | Source | 256 | 58 | OptionalStorage &operator=(T &&y) { | 257 | 58 | if (has_value()) { | 258 | 5 | val = std::move(y); | 259 | 53 | } else { | 260 | 53 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 53 | hasVal = true; | 262 | 53 | } | 263 | 58 | return *this; | 264 | 58 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22LoadOwnershipQualifierELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13LoadOperationELb1EEaSEOS3_ Line | Count | Source | 256 | 77 | OptionalStorage &operator=(T &&y) { | 257 | 77 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 77 | } else { | 260 | 77 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 77 | hasVal = true; | 262 | 77 | } | 263 | 77 | return *this; | 264 | 77 | } |
Unexecuted instantiation: APIDigesterData.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115DiffItemKeyKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api15APIDiffItemKindELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift3ide3api11SDKNodeKindEEELb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api14NodeAnnotationELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide3api13SpecialCaseIdELb1EEaSEOS5_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_115ContextOverride8OverrideELb1EEaSEOS4_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_113IndentContextELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3ide17ResolvedRangeInfoELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10AccessKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7LocatedIPNS2_12ArgumentListEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEELb1EEaSEOS8_ _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver6Driver10DriverKindEEELb1EEaSEOS7_ Line | Count | Source | 256 | 5 | OptionalStorage &operator=(T &&y) { | 257 | 5 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 5 | } else { | 260 | 5 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 5 | hasVal = true; | 262 | 5 | } | 263 | 5 | return *this; | 264 | 5 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo7LTOKindEEELb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEELb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift6driver10OutputInfo11MSVCRuntimeELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16BuiltinMacroKindELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14ImportedModuleELb1EEaSEOS3_ Line | Count | Source | 256 | 191 | OptionalStorage &operator=(T &&y) { | 257 | 191 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 191 | } else { | 260 | 191 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 191 | hasVal = true; | 262 | 191 | } | 263 | 191 | return *this; | 264 | 191 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23ExpandedMacroDefinitionELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_18PointerEmbeddedIntIjLi31EEELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift7CanTypeELb1EEaSEOS3_ Line | Count | Source | 256 | 6 | OptionalStorage &operator=(T &&y) { | 257 | 6 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 6 | } else { | 260 | 6 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 6 | hasVal = true; | 262 | 6 | } | 263 | 6 | return *this; | 264 | 6 | } |
Unexecuted instantiation: SILFunctionType.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift16BuiltinValueKindELb1EEaSEOS3_ Line | Count | Source | 256 | 90 | OptionalStorage &operator=(T &&y) { | 257 | 90 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 90 | } else { | 260 | 90 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 90 | hasVal = true; | 262 | 90 | } | 263 | 90 | return *this; | 264 | 90 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift11SILLocationELb1EEaSEOS3_ Line | Count | Source | 256 | 29 | OptionalStorage &operator=(T &&y) { | 257 | 29 | if (has_value()) { | 258 | 17 | val = std::move(y); | 259 | 17 | } else { | 260 | 12 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 12 | hasVal = true; | 262 | 12 | } | 263 | 29 | return *this; | 264 | 29 | } |
Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_111CounterExprELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift13SILResultInfoELb1EEaSEOS3_ Line | Count | Source | 256 | 14 | OptionalStorage &operator=(T &&y) { | 257 | 14 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 14 | } else { | 260 | 14 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 14 | hasVal = true; | 262 | 14 | } | 263 | 14 | return *this; | 264 | 14 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13OwnershipKind7innertyEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13CapturedValueELb1EEaSEOS3_ Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_4clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EEaSEOSI_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13AccessStorageELb1EEaSEOS3_ Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIZNK5swift4test3$_2clINS3_11SILFunctionENS4_9ArgumentsENS4_12FunctionTestEEEDaRT_RT0_RT1_E4KindEELb1EEaSEOSI_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12AccessorKindEEELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift18SILInstructionKindEEELb1EEaSEOS5_ Line | Count | Source | 256 | 27 | OptionalStorage &operator=(T &&y) { | 257 | 27 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 27 | } else { | 260 | 27 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 27 | hasVal = true; | 262 | 27 | } | 263 | 27 | return *this; | 264 | 27 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23OpenedExistentialAccessEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19AssignByWrapperInst4ModeELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16AssignOrInitInst4ModeELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift10SILLinkageEEELb1EEaSEOS5_ Line | Count | Source | 256 | 4 | OptionalStorage &operator=(T &&y) { | 257 | 4 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 4 | } else { | 260 | 4 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 4 | hasVal = true; | 262 | 4 | } | 263 | 4 | return *this; | 264 | 4 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10SILLinkageELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeAttributes10ConventionELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift34MarkUnresolvedReferenceBindingInst4KindELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22LoadOwnershipQualifierEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift19CastConsumptionKindEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift23StoreOwnershipQualifierEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift24AssignOwnershipQualifierEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23StoreOwnershipQualifierELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift24AssignOwnershipQualifierELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20SILAccessEnforcementELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23KeyPathPatternComponentELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints22SyntacticElementTargetELb1EEaSEOS4_ Unexecuted instantiation: CSSyntacticElement.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_123SyntacticElementContextELb1EEaSEOS3_ Unexecuted instantiation: CSGen.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11constraints14ConstraintKindELb1EEaSEOS4_ Line | Count | Source | 256 | 2.12k | OptionalStorage &operator=(T &&y) { | 257 | 2.12k | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 2.12k | } else { | 260 | 2.12k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 2.12k | hasVal = true; | 262 | 2.12k | } | 263 | 2.12k | return *this; | 264 | 2.12k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11SourceRangeELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift21ContextualTypePurposeELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift11RequirementELb1EEaSEOS3_ Line | Count | Source | 256 | 2.10k | OptionalStorage &operator=(T &&y) { | 257 | 2.10k | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 2.10k | } else { | 260 | 2.10k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 2.10k | hasVal = true; | 262 | 2.10k | } | 263 | 2.10k | return *this; | 264 | 2.10k | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift23CompletionContextFinder8FallbackELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift11DeclNameRefELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8ArgumentELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19ExportabilityReasonELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift7ASTNodeELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift22DispatchQueueOperationEEELb1EEaSEOS5_ TypeCheckDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIN12_GLOBAL__N_121ImplicitlyFinalReasonELb1EEaSEOS3_ Line | Count | Source | 256 | 9 | OptionalStorage &operator=(T &&y) { | 257 | 9 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 9 | } else { | 260 | 9 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 9 | hasVal = true; | 262 | 9 | } | 263 | 9 | return *this; | 264 | 9 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift10ObjCReasonELb1EEaSEOS3_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm15optional_detail15OptionalStorageIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS2_9ClassDeclEE16UnstableNameKindLb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19TypeWitnessConflictELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift14TypeResolutionELb1EEaSEOS3_ Line | Count | Source | 256 | 103 | OptionalStorage &operator=(T &&y) { | 257 | 103 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 103 | } else { | 260 | 103 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 103 | hasVal = true; | 262 | 103 | } | 263 | 103 | return *this; | 264 | 103 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift29SILFunctionTypeRepresentationEEELb1EEaSEOS5_ Line | Count | Source | 256 | 23 | OptionalStorage &operator=(T &&y) { | 257 | 23 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 23 | } else { | 260 | 23 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 23 | hasVal = true; | 262 | 23 | } | 263 | 23 | return *this; | 264 | 23 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift26FunctionTypeRepresentationEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13SanitizerKindEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_24SanitizerCoverageOptions4TypeELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift14ImportedModuleEEELb1EEaSEOS5_ Line | Count | Source | 256 | 81 | OptionalStorage &operator=(T &&y) { | 257 | 81 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 81 | } else { | 260 | 81 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 81 | hasVal = true; | 262 | 81 | } | 263 | 81 | return *this; | 264 | 81 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19CtorInitializerKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift12PlatformKindEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5clang6ModuleELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignAsyncConventionELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22ForeignErrorConventionELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift3tokELb1EEaSEOS3_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseStorageRestrictionsAttributeENS2_9SourceLocES4_E10AccessKindLb1EEaSEOS5_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift6Parser33parseExtendedAvailabilitySpecListENS2_9SourceLocES4_NS_9StringRefEE3$_4Lb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12PlatformKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift14SpecializeAttr18SpecializationKindELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift21DifferentiabilityKindELb1EEaSEOS3_ Line | Count | Source | 256 | 85 | OptionalStorage &operator=(T &&y) { | 257 | 85 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 85 | } else { | 260 | 85 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 85 | hasVal = true; | 262 | 85 | } | 263 | 85 | return *this; | 264 | 85 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift11AccessLevelEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9MacroRoleEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9MacroRoleELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift27MacroIntroducedDeclNameKindEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIPN5swift8TypeReprELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8DeclKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift13AssociativityEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift13AssociativityELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift20AvailabilitySpecKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21PlatformConditionKindEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift5TokenEEELb1EEaSEOS5_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9SourceLocELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift12ObjCSelectorELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift21KnownFoundationEntityEEELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageIN5swift4UUIDELb1EEaSEOS3_ Line | Count | Source | 256 | 12 | OptionalStorage &operator=(T &&y) { | 257 | 12 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 12 | } else { | 260 | 12 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 12 | hasVal = true; | 262 | 12 | } | 263 | 12 | return *this; | 264 | 12 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift25ForeignRepresentationInfoELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5clang23HeaderIncludeFormatKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle26ImplMetatypeRepresentationELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEELb1EEaSEOS7_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalI20LayoutConstraintKindEELb1EEaSEOS4_ _ZN4llvm15optional_detail15OptionalStorageIN5swift20TypeTransformContextELb1EEaSEOS3_ Line | Count | Source | 256 | 3 | OptionalStorage &operator=(T &&y) { | 257 | 3 | if (has_value()) { | 258 | 2 | val = std::move(y); | 259 | 2 | } else { | 260 | 1 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 1 | hasVal = true; | 262 | 1 | } | 263 | 3 | return *this; | 264 | 3 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift15CharSourceRangeELb1EEaSEOS3_ Line | Count | Source | 256 | 508 | OptionalStorage &operator=(T &&y) { | 257 | 508 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 508 | } else { | 260 | 508 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 508 | hasVal = true; | 262 | 508 | } | 263 | 508 | return *this; | 264 | 508 | } |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift4ExprELb1EEaSEOS4_ Line | Count | Source | 256 | 1.04k | OptionalStorage &operator=(T &&y) { | 257 | 1.04k | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 1.04k | } else { | 260 | 1.04k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 1.04k | hasVal = true; | 262 | 1.04k | } | 263 | 1.04k | return *this; | 264 | 1.04k | } |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift4StmtELb1EEaSEOS4_ Line | Count | Source | 256 | 419 | OptionalStorage &operator=(T &&y) { | 257 | 419 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 419 | } else { | 260 | 419 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 419 | hasVal = true; | 262 | 419 | } | 263 | 419 | return *this; | 264 | 419 | } |
_ZN4llvm15optional_detail15OptionalStorageIPN5swift7PatternELb1EEaSEOS4_ Line | Count | Source | 256 | 1.79k | OptionalStorage &operator=(T &&y) { | 257 | 1.79k | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 1.79k | } else { | 260 | 1.79k | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 1.79k | hasVal = true; | 262 | 1.79k | } | 263 | 1.79k | return *this; | 264 | 1.79k | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12TypeAttrKindELb1EEaSEOS3_ Line | Count | Source | 256 | 126 | OptionalStorage &operator=(T &&y) { | 257 | 126 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 126 | } else { | 260 | 126 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 126 | hasVal = true; | 262 | 126 | } | 263 | 126 | return *this; | 264 | 126 | } |
_ZN4llvm15optional_detail15OptionalStorageIN5swift12DeclAttrKindELb1EEaSEOS3_ Line | Count | Source | 256 | 105 | OptionalStorage &operator=(T &&y) { | 257 | 105 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 105 | } else { | 260 | 105 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 105 | hasVal = true; | 262 | 105 | } | 263 | 105 | return *this; | 264 | 105 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEELb1EEaSEOS6_ Line | Count | Source | 256 | 12 | OptionalStorage &operator=(T &&y) { | 257 | 12 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 12 | } else { | 260 | 12 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 12 | hasVal = true; | 262 | 12 | } | 263 | 12 | return *this; | 264 | 12 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14AtomicOrderingELb1EEaSEOS2_ ClangTypeConverter.cpp:_ZN4llvm15optional_detail15OptionalStorageIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS2_16BoundGenericTypeEE10StructKindLb1EEaSEOS6_ Line | Count | Source | 256 | 8 | OptionalStorage &operator=(T &&y) { | 257 | 8 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 8 | } else { | 260 | 8 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 8 | hasVal = true; | 262 | 8 | } | 263 | 8 | return *this; | 264 | 8 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEELb1EEaSEOS7_ _ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift16AttributedImportINS3_14ImportedModuleEEEEELb1EEaSEOS7_ Line | Count | Source | 256 | 16 | OptionalStorage &operator=(T &&y) { | 257 | 16 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 16 | } else { | 260 | 16 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 16 | hasVal = true; | 262 | 16 | } | 263 | 16 | return *this; | 264 | 16 | } |
_ZN4llvm15optional_detail15OptionalStorageINS_8ArrayRefIN5swift11RequirementEEELb1EEaSEOS5_ Line | Count | Source | 256 | 28 | OptionalStorage &operator=(T &&y) { | 257 | 28 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 28 | } else { | 260 | 28 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 28 | hasVal = true; | 262 | 28 | } | 263 | 28 | return *this; | 264 | 28 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift9rewriting6SymbolELb1EEaSEOS4_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift9rewriting10DebugFlagsEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift19CanGenericSignatureELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift22MetatypeRepresentationELb1EEaSEOS3_ _ZN4llvm15optional_detail15OptionalStorageIN5swift10file_types2IDELb1EEaSEOS4_ Line | Count | Source | 256 | 104 | OptionalStorage &operator=(T &&y) { | 257 | 104 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 104 | } else { | 260 | 104 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 104 | hasVal = true; | 262 | 104 | } | 263 | 104 | return *this; | 264 | 104 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIiLb1EEaSEOi Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalIN5swift7FeatureEEELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageINS_8OptionalINS_9StringRefEEELb1EEaSEOS4_ Line | Count | Source | 256 | 980 | OptionalStorage &operator=(T &&y) { | 257 | 980 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 980 | } else { | 260 | 980 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 980 | hasVal = true; | 262 | 980 | } | 263 | 980 | return *this; | 264 | 980 | } |
Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEELb1EEaSEOS6_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift16BlockListKeyKindELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift15BlockListActionELb1EEaSEOS3_ Unexecuted instantiation: _ZN4llvm15optional_detail15OptionalStorageIN5swift8Demangle4Node4KindELb1EEaSEOS5_ _ZN4llvm15optional_detail15OptionalStorageIcLb1EEaSEOc Line | Count | Source | 256 | 212 | OptionalStorage &operator=(T &&y) { | 257 | 212 | if (has_value()) { | 258 | 0 | val = std::move(y); | 259 | 212 | } else { | 260 | 212 | ::new ((void *)std::addressof(val)) T(std::move(y)); | 261 | 212 | hasVal = true; | 262 | 212 | } | 263 | 212 | return *this; | 264 | 212 | } |
|
265 | | }; |
266 | | |
267 | | } // namespace optional_detail |
268 | | |
269 | | template <typename T> class Optional { |
270 | | optional_detail::OptionalStorage<T> Storage; |
271 | | |
272 | | public: |
273 | | using value_type = T; |
274 | | |
275 | 313k | constexpr Optional() = default; Line | Count | Source | 275 | 65.1k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift10DiagnosticEEC2Ev Line | Count | Source | 275 | 41 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift21CopyPropagationOptionEEC2Ev Line | Count | Source | 275 | 17 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11FingerprintEEC2Ev _ZN4llvm8OptionalINS_12VersionTupleEEC2Ev Line | Count | Source | 275 | 9.14k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5clang10CASOptionsEEC2Ev Line | Count | Source | 275 | 103 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift3ide3api7SDKNodeEEC2Ev Unexecuted instantiation: swift_cache_tool_main.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_120SwiftCacheToolActionEEC2Ev _ZN4llvm8OptionalIN5swift11AccessLevelEEC2Ev Line | Count | Source | 275 | 39 | constexpr Optional() = default; |
Line | Count | Source | 275 | 51.0k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift37BufferIndirectlyCausingDiagnosticRAIIEEC2Ev Line | Count | Source | 275 | 5 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28PrettyStackTraceFileContentsEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__13setIaNS1_4lessIaEENS1_9allocatorIaEEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift20ModuleDependencyInfoEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_3orc23JITTargetMachineBuilderEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_10DataLayoutEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEEEC2Ev _ZN4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEEC2Ev Line | Count | Source | 275 | 103 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEC2Ev Line | Count | Source | 275 | 103 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift27UnavailableDeclOptimizationEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift17StrictConcurrencyEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift28AccessNoteDiagnosticBehaviorEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16ConcurrencyModelEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IbEEEC2Ev _ZN4llvm8OptionalIN5swift21DestroyHoistingOptionEEC2Ev Line | Count | Source | 275 | 13 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21DestroyHoistingOptionEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21CopyPropagationOptionEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift16JITDebugArtifactEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift16IRGenLLVMLTOKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_12function_refIFvvEEEEC2Ev DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEEC2Ev Line | Count | Source | 275 | 38 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyInfoEEC2Ev _ZN4llvm8OptionalINS_8DenseMapIN5swift10IdentifierENS2_12PluginLoader11PluginEntryENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEEC2Ev Line | Count | Source | 275 | 15 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift16DiagnosticEngineEEC2Ev Line | Count | Source | 275 | 1 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift7version7VersionEEC2Ev Line | Count | Source | 275 | 1 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIhEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift3ide3api7KeyKindEEEEC2Ev _ZN4llvm8OptionalIN5swift12AccessorKindEEC2Ev Line | Count | Source | 275 | 145 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift8DeclKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift15CustomAttrValueELj2EEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEEC2Ev _ZN4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEEC2Ev Line | Count | Source | 275 | 157 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS_13AtomicRMWInst5BinOpEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetails12DirectResultEEC2Ev _ZN4llvm8OptionalIN5swift5irgen22NativeConventionSchemaEEC2Ev Line | Count | Source | 275 | 5 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen7AddressEEC2Ev Line | Count | Source | 275 | 102 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeEEC2Ev _ZN4llvm8OptionalIN5swift5irgen11ClassLayoutEEC2Ev Line | Count | Source | 275 | 4 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen19ConstantInitBuilderEEC2Ev Line | Count | Source | 275 | 153 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen10LinkEntityEEC2Ev Line | Count | Source | 275 | 22 | constexpr Optional() = default; |
Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoEEC2Ev Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_119LinearFuncFieldInfoEEC2Ev _ZN4llvm8OptionalIN5swift19ParameterConventionEEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPNS_4TypeEEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen12StackAddressEEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
GenMeta.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEEC2Ev Line | Count | Source | 275 | 19 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEC2Ev Line | Count | Source | 275 | 16 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen19TypeEntityReferenceEEC2Ev Line | Count | Source | 275 | 1 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionEEC2Ev Line | Count | Source | 275 | 10 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen14FulfillmentMapEEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18GenericRequirementEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14MetadataSourceEEC2Ev _ZN4llvm8OptionalINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS5_12ConstantInitEEEEEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
GenStruct.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_114ClangFieldInfoEEC2Ev Line | Count | Source | 275 | 4 | constexpr Optional() = default; |
GenStruct.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_115StructFieldInfoEEC2Ev Line | Count | Source | 275 | 33 | constexpr Optional() = default; |
GenTuple.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_114TupleFieldInfoEEC2Ev Line | Count | Source | 275 | 28 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_5APIntEEC2Ev Line | Count | Source | 275 | 212 | constexpr Optional() = default; |
Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEEC2Ev _ZN4llvm8OptionalINS_10PGOOptionsEEC2Ev Line | Count | Source | 275 | 2 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_3vfs10OutputFileEEC2Ev Line | Count | Source | 275 | 2 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEEC2Ev _ZN4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEEC2Ev Line | Count | Source | 275 | 4 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPNS_8ConstantEEC2Ev Line | Count | Source | 275 | 7 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPNS_9InlineAsmEEC2Ev Line | Count | Source | 275 | 7 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen15FunctionPointerEEC2Ev Line | Count | Source | 275 | 15 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift18ClusteredBitVectorEEC2Ev Line | Count | Source | 275 | 7 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEEC2Ev Line | Count | Source | 275 | 325 | constexpr Optional() = default; |
IRGenSIL.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112LoweredValueEEC2Ev Line | Count | Source | 275 | 96 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen13OperationCostEEC2Ev Line | Count | Source | 275 | 48 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift5irgen4SizeEEC2Ev Line | Count | Source | 275 | 32 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IhEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEEC2Ev _ZN4llvm8OptionalIN5swift7RT_KindEEC2Ev Line | Count | Source | 275 | 359 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S5_EEEEEC2Ev Line | Count | Source | 275 | 2 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift18DiverseValueBufferINS1_8Lowering7CleanupEEEEC2Ev Line | Count | Source | 275 | 301 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering5ScopeEEC2Ev _ZN4llvm8OptionalIN5swift10SILDeclRefEEC2Ev Line | Count | Source | 275 | 96 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift12ProtocolDeclEEC2Ev Line | Count | Source | 275 | 18 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift8FuncDeclEEC2Ev Line | Count | Source | 275 | 132 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift18AssociatedTypeDeclEEC2Ev Line | Count | Source | 275 | 6 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift7VarDeclEEC2Ev Line | Count | Source | 275 | 6 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift19ProtocolConformanceEEC2Ev Line | Count | Source | 275 | 6 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift13SILResultInfoEEC2Ev Line | Count | Source | 275 | 711 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering24ConvertingInitializationEEC2Ev _ZN4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEEC2Ev Line | Count | Source | 275 | 79 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS1_14default_deleteIS5_EEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering13ArgumentScopeEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering14CalleeTypeInfoEEC2Ev _ZN4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEEC2Ev Line | Count | Source | 275 | 69 | constexpr Optional() = default; |
SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16CalleeEEC2Ev Line | Count | Source | 275 | 69 | constexpr Optional() = default; |
SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_18CallSiteEEC2Ev Line | Count | Source | 275 | 158 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift14ActorIsolationEEC2Ev Line | Count | Source | 275 | 1.90k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering21FormalEvaluationScopeEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering8JumpDestEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6RValueEEC2Ev _ZN4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEEC2Ev Line | Count | Source | 275 | 113 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering14SILGenFunction15OpaqueValueRAIIEEC2Ev _ZN4llvm8OptionalIN5swift20SILAccessEnforcementEEC2Ev Line | Count | Source | 275 | 16 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6LValueEEC2Ev _ZN4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEEC2Ev Line | Count | Source | 275 | 1 | constexpr Optional() = default; |
SILGenPoly.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113ResultPlannerEEC2Ev Line | Count | Source | 275 | 25 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEEC2Ev Line | Count | Source | 275 | 69 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEEC2Ev Line | Count | Source | 275 | 65 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14CanTypeWrapperINS1_15AnyFunctionTypeEEEEC2Ev _ZN4llvm8OptionalIPN5swift13SILBasicBlockEEC2Ev Line | Count | Source | 275 | 4.72k | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEEC2Ev Line | Count | Source | 275 | 38 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEEC2Ev Line | Count | Source | 275 | 38 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift13ArrayCallKindEEC2Ev Line | Count | Source | 275 | 140 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIPKjEC2Ev _ZN4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEEC2Ev Line | Count | Source | 275 | 11 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift13SILAccessKindEEC2Ev Line | Count | Source | 275 | 32 | constexpr Optional() = default; |
DefiniteInitialization.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16DIKindEEC2Ev Line | Count | Source | 275 | 298 | constexpr Optional() = default; |
DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEEC2Ev Line | Count | Source | 275 | 149 | constexpr Optional() = default; |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_INS1_8SILValueEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEC2Ev Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119AvailableValueStoreEEC2Ev _ZN4llvm8OptionalINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEEEC2Ev Line | Count | Source | 275 | 148 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_INS1_20DebugVarCarryingInstEEEEEEENS1_14FrozenMultiMapIjS6_NS4_6vectorIS8_NS4_9allocatorIS8_EEEEE15PairToSecondEltEEEEC2Ev PredictableMemOpt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114AvailableValueEEC2Ev Line | Count | Source | 275 | 46 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift8SILValueEEC2Ev Line | Count | Source | 275 | 4.69k | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEC2Ev Line | Count | Source | 275 | 88 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_IPNS1_22SingleValueInstructionEEEEEEENS1_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_IS6_EEEEEENS1_14FrozenMultiMapIS6_S6_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEC2Ev _ZN4llvm8OptionalIN5swift7SILTypeEEC2Ev Line | Count | Source | 275 | 4.97k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift11SILLocationEEC2Ev Line | Count | Source | 275 | 3.24k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEEC2Ev Line | Count | Source | 275 | 24.9k | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_5AlignEEC2Ev Line | Count | Source | 275 | 726 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift16FixedOperandListILj1EEEEC2Ev Line | Count | Source | 275 | 71 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8PassKindEEC2Ev _ZN4llvm8OptionalIN5swift16InstModCallbacksEEC2Ev Line | Count | Source | 275 | 5.18k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ValueLifetimeAnalysisEEC2Ev _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEC2Ev Line | Count | Source | 275 | 530 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_INS1_11semanticarc7Context21ConsumingOperandStateEEEEEEENS1_14FrozenMultiMapIS6_S9_NS4_6vectorISB_NS4_9allocatorISB_EEEEE15PairToSecondEltEEEEC2Ev _ZN4llvm8OptionalIN5swift15SILPrintContextEEC2Ev Line | Count | Source | 275 | 1.13k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift21MarkUninitializedInst4KindEEC2Ev Line | Count | Source | 275 | 5 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15EnumElementDeclEEC2Ev _ZN4llvm8OptionalINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_jEEEEEC2Ev Line | Count | Source | 275 | 1.32k | constexpr Optional() = default; |
SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_120StorageStateTrackingINS1_10LiveValuesEEEEC2Ev Line | Count | Source | 275 | 57 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEEC2Ev Line | Count | Source | 275 | 1.98k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift13BasicBlockSetEEC2Ev Line | Count | Source | 275 | 998 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SymbolicValueEEC2Ev _ZN4llvm8OptionalIN5swift13LoadOperationEEC2Ev Line | Count | Source | 275 | 77 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift23ConcreteExistentialInfoEEC2Ev Line | Count | Source | 275 | 649 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift25FindLocalApplySitesResultEEC2Ev Line | Count | Source | 275 | 1.09k | constexpr Optional() = default; |
SILInliner.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEEC2Ev Line | Count | Source | 275 | 222 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10ModuleDeclEEC2Ev Unexecuted instantiation: APIDigesterData.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115DiffItemKeyKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api15APIDiffItemKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift3ide3api11SDKNodeKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api14NodeAnnotationEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api13SpecialCaseIdEEC2Ev Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEC2Ev Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEEC2Ev _ZN4llvm8OptionalIN5swift5TokenEEC2Ev Line | Count | Source | 275 | 254 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide17ResolvedRangeInfoEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10AccessKindEEC2Ev _ZN4llvm8OptionalINS_6TripleEEC2Ev Line | Count | Source | 275 | 6.28k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift6driver20IncrementalJobAction9InputInfo6StatusEEEEC2Ev _ZN4llvm8OptionalINS0_IN5swift6driver6Driver10DriverKindEEEEC2Ev Line | Count | Source | 275 | 5 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5clang13DarwinSDKInfoEEC2Ev Line | Count | Source | 275 | 1 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift6driver10OutputInfo7LTOKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift6driver10OutputInfo11MSVCRuntimeEEEEC2Ev _ZN4llvm8OptionalIN5swift13serialization26PrettyStackTraceModuleFileEEC2Ev Line | Count | Source | 275 | 69 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16BuiltinMacroKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5clang22OverloadedOperatorKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExpandedMacroDefinitionEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang11ConceptDeclEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang14IdentifierInfoEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12TemplateNameEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang7TagDeclEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang20TemplateTypeParmDeclEEC2Ev _ZN4llvm8OptionalIN5swift24SerializedModuleBaseNameEEC2Ev Line | Count | Source | 275 | 198 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift10ASTExtInfoEEC2Ev Line | Count | Source | 275 | 35 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift8Lowering13TypeConverter18GenericContextRAIIEEC2Ev Line | Count | Source | 275 | 287 | constexpr Optional() = default; |
SILFunctionType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEEC2Ev Line | Count | Source | 275 | 287 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift22ForeignErrorConventionEEC2Ev Line | Count | Source | 275 | 453 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEEC2Ev Line | Count | Source | 275 | 453 | constexpr Optional() = default; |
Line | Count | Source | 275 | 127 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift16BuiltinValueKindEEC2Ev Line | Count | Source | 275 | 100 | constexpr Optional() = default; |
Line | Count | Source | 275 | 518 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift18ValueOwnershipKindEEC2Ev Line | Count | Source | 275 | 268 | constexpr Optional() = default; |
Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ProfileCounterRefEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift13OwnershipKind7innertyEEEEC2Ev _ZN4llvm8OptionalIN5swift7CanTypeEEC2Ev Line | Count | Source | 275 | 110 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13CapturedValueEEC2Ev _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEC2Ev Line | Count | Source | 275 | 261 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEEC2Ev Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm8OptionalINS0_IZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEC2Ev _ZN4llvm8OptionalIPKNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEEC2Ev Line | Count | Source | 275 | 1.75k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift20AccessRepresentation4KindEEC2Ev Line | Count | Source | 275 | 4.60k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift13AccessStorageEEC2Ev Line | Count | Source | 275 | 2.93k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift17AccessStorageCastEEC2Ev Line | Count | Source | 275 | 2.93k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS_7remarks14RemarkLocationEEC2Ev _ZN4llvm8OptionalIN5swift10ProjectionEEC2Ev Line | Count | Source | 275 | 582 | constexpr Optional() = default; |
Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm8OptionalINS0_IZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEC2Ev _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2Ev Line | Count | Source | 275 | 14 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEC2Ev Line | Count | Source | 275 | 18 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEEC2Ev Line | Count | Source | 275 | 10.9k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift11RequirementEEC2Ev Line | Count | Source | 275 | 3.79k | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_IN5swift12AccessorKindEEEEC2Ev Line | Count | Source | 275 | 12 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_IN5swift18SILInstructionKindEEEEC2Ev Line | Count | Source | 275 | 27 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift23OpenedExistentialAccessEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22LoadOwnershipQualifierEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23StoreOwnershipQualifierEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24AssignOwnershipQualifierEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AssignByWrapperInst4ModeEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16AssignOrInitInst4ModeEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9SILParser19UnresolvedValueNameEEC2Ev _ZN4llvm8OptionalIN5swift10SILLinkageEEC2Ev Line | Count | Source | 275 | 7 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_IN5swift10SILLinkageEEEEC2Ev Line | Count | Source | 275 | 4 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23KeyPathPatternComponentEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift34MarkUnresolvedReferenceBindingInst4KindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift22LoadOwnershipQualifierEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift19CastConsumptionKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift23StoreOwnershipQualifierEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift24AssignOwnershipQualifierEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEEC2Ev _ZN4llvm8OptionalIN5swift11constraints9inference10BindingSetEEC2Ev Line | Count | Source | 275 | 775 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEEC2Ev Line | Count | Source | 275 | 196 | constexpr Optional() = default; |
Unexecuted instantiation: CSSyntacticElement.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_123SyntacticElementContextEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEC2Ev Unexecuted instantiation: CSGen.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8TypeBaseEEC2Ev _ZN4llvm8OptionalIN5swift11constraints14ConstraintKindEEC2Ev Line | Count | Source | 275 | 2.12k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift11constraints8SolutionEEC2Ev Line | Count | Source | 275 | 380 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEEC2Ev Line | Count | Source | 275 | 83 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEEC2Ev Line | Count | Source | 275 | 23 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift11constraints5ScoreEEC2Ev Line | Count | Source | 275 | 1.06k | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintENS4_5ScoreEEEEC2Ev Line | Count | Source | 275 | 23 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_18ConjunctionElementEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ContextualTypePurposeEEC2Ev _ZN4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEEC2Ev Line | Count | Source | 275 | 2.86k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift11constraints15ExpressionTimerEEC2Ev Line | Count | Source | 275 | 1.10k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SourceRangeEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEEC2Ev _ZN4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEEC2Ev Line | Count | Source | 275 | 83 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift12LookupResultEEC2Ev Line | Count | Source | 275 | 53 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11DeclNameRefEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjPN5swift20GenericTypeParamTypeEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ArgumentEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AvailabilityContextEEC2Ev _ZN4llvm8OptionalIN5swift4DiagIJEEEEC2Ev Line | Count | Source | 275 | 1 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7ASTNodeEEC2Ev _ZN4llvm8OptionalIN5swift15ReferencedActorEEC2Ev Line | Count | Source | 275 | 44 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_IN5swift22DispatchQueueOperationEEEEC2Ev Line | Count | Source | 275 | 6 | constexpr Optional() = default; |
TypeCheckDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121ImplicitlyFinalReasonEEC2Ev Line | Count | Source | 275 | 13 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22AutomaticEnumValueKindEEC2Ev _ZN4llvm8OptionalIN5swift10ObjCReasonEEC2Ev Line | Count | Source | 275 | 323 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIjN5swift11SourceRangeEEEEC2Ev Line | Count | Source | 275 | 70 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift9ParamDeclEEC2Ev Line | Count | Source | 275 | 87 | constexpr Optional() = default; |
TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEC2Ev Line | Count | Source | 275 | 904 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift15CheckedCastKindEEC2Ev Line | Count | Source | 275 | 23 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift16RequirementMatchEEC2Ev Line | Count | Source | 275 | 982 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift11constraints16ConstraintSystemEEC2Ev Line | Count | Source | 275 | 982 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift11AccessScopeEbEEEC2Ev Line | Count | Source | 275 | 59 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift18ConformanceCheckerEEC2Ev Line | Count | Source | 275 | 70 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEEC2Ev Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm8OptionalIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS1_9ClassDeclEE16UnstableNameKindEC2Ev _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEC2Ev Line | Count | Source | 275 | 37.8k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift19TypeWitnessConflictEEC2Ev Line | Count | Source | 275 | 174 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift14TypeResolutionEEC2Ev Line | Count | Source | 275 | 103 | constexpr Optional() = default; |
TypeCheckStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117FunctionBodyTimerEEC2Ev Line | Count | Source | 275 | 148 | constexpr Optional() = default; |
TypeCheckStorage.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEEC2Ev Line | Count | Source | 275 | 71 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_IN5swift29SILFunctionTypeRepresentationEEEEC2Ev Line | Count | Source | 275 | 23 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift26FunctionTypeRepresentationEEEEC2Ev TypeCheckType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_126SILInnerGenericContextRAIIEEC2Ev Line | Count | Source | 275 | 50 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift21DiagnosticSuppressionEEC2Ev Line | Count | Source | 275 | 69 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift13SanitizerKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_24SanitizerCoverageOptions4TypeEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_15MemoryBufferRefEEC2Ev _ZN4llvm8OptionalINS_3cas9ObjectRefEEC2Ev Line | Count | Source | 275 | 16 | constexpr Optional() = default; |
Line | Count | Source | 275 | 19 | constexpr Optional() = default; |
Line | Count | Source | 275 | 19 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift14ImportedModuleEEEEC2Ev Line | Count | Source | 275 | 1.15k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4TypeEEC2Ev _ZN4llvm8OptionalIN5clang8QualTypeEEC2Ev Line | Count | Source | 275 | 18 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2Ev Line | Count | Source | 275 | 109 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEC2Ev Line | Count | Source | 275 | 24 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEEC2Ev Line | Count | Source | 275 | 17 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift8importer12ImportedNameEEC2Ev Line | Count | Source | 275 | 34 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPKN5clang13SwiftAttrAttrEEC2Ev Line | Count | Source | 275 | 32 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift19CtorInitializerKindEEC2Ev Line | Count | Source | 275 | 15 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift12PlatformKindEEEEC2Ev ImportName.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEEC2Ev Line | Count | Source | 275 | 467 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEC2Ev Line | Count | Source | 275 | 492 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift15DiagnosticQueueEEC2Ev Line | Count | Source | 275 | 2.84k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift3tokEEC2Ev Line | Count | Source | 275 | 32 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift21DiagnosticTransactionEEC2Ev Line | Count | Source | 275 | 17 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14SpecializeAttr18SpecializationKindEEC2Ev Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm8OptionalIZN5swift6Parser33parseStorageRestrictionsAttributeENS1_9SourceLocES3_E10AccessKindEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9MacroRoleEEC2Ev _ZN4llvm8OptionalIN5swift6Parser17ParseFunctionBodyEEC2Ev Line | Count | Source | 275 | 11 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8DeclKindEEC2Ev _ZN4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEEC2Ev Line | Count | Source | 275 | 224 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift6Parser13ContextChangeEEC2Ev Line | Count | Source | 275 | 170 | constexpr Optional() = default; |
Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm8OptionalIZN5swift6Parser33parseExtendedAvailabilitySpecListENS1_9SourceLocES3_NS_9StringRefEE3$_4EC2Ev _ZN4llvm8OptionalIN5swift21DifferentiabilityKindEEC2Ev Line | Count | Source | 275 | 87 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift11AccessLevelEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift9MacroRoleEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift27MacroIntroducedDeclNameKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift13AssociativityEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5Lexer21ForwardSlashRegexRAIIEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20AvailabilitySpecKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21PlatformConditionKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_14SaveAndRestoreINS0_IN5swift12StableHasherEEEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15TuplePatternEltEEC2Ev _ZN4llvm8OptionalIN5swift6Parser17BacktrackingScopeEEC2Ev Line | Count | Source | 275 | 44 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19PatternBindingState4KindEEC2Ev _ZN4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEEC2Ev Line | Count | Source | 275 | 14 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12ObjCSelectorEEC2Ev _ZN4llvm8OptionalIN5swift18ClangTypeConverterEEC2Ev Line | Count | Source | 275 | 15 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12ModuleLoader23ModuleVersionSourceKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25ForeignRepresentationInfoEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21KnownFoundationEntityEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle26ImplMetatypeRepresentationEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle18ImplFunctionResultINS1_4TypeEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift8Demangle10ASTBuilder17ForeignModuleKindEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_I20LayoutConstraintKindEEEC2Ev _ZN4llvm8OptionalINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S8_EEEEEC2Ev Line | Count | Source | 275 | 2.21k | constexpr Optional() = default; |
ASTPrinter.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111TypePrinterEEC2Ev Line | Count | Source | 275 | 332 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift15CharSourceRangeEEC2Ev Line | Count | Source | 275 | 527 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift4ExprEEC2Ev Line | Count | Source | 275 | 1.04k | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift4StmtEEC2Ev Line | Count | Source | 275 | 419 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift7PatternEEC2Ev Line | Count | Source | 275 | 1.79k | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift12TypeAttrKindEEC2Ev Line | Count | Source | 275 | 126 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift12DeclAttrKindEEC2Ev Line | Count | Source | 275 | 243 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_IN5swift30AutoDiffDerivativeFunctionKind7innertyEEEEC2Ev Line | Count | Source | 275 | 12 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift36DifferentiabilityWitnessFunctionKind7innertyEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_14AtomicOrderingEEC2Ev _ZN4llvm8OptionalIN5swift14TypeAttributes10ConventionEEC2Ev Line | Count | Source | 275 | 889 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift4UUIDEEC2Ev Line | Count | Source | 275 | 889 | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift8TypeReprEEC2Ev Line | Count | Source | 275 | 889 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift14TypeAttributes19OpaqueReturnTypeRefEEC2Ev Line | Count | Source | 275 | 889 | constexpr Optional() = default; |
ClangTypeConverter.cpp:_ZN4llvm8OptionalIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS1_16BoundGenericTypeEE10StructKindEC2Ev Line | Count | Source | 275 | 8 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift20RequirementSignatureEEC2Ev Line | Count | Source | 275 | 666 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift15SubstitutionMapEEC2Ev Line | Count | Source | 275 | 25 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift20TypeTransformContextEEC2Ev Line | Count | Source | 275 | 533 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup9ParagraphEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup12ReturnsFieldEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup11ThrowsFieldEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup20LocalizationKeyFieldEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEC2Ev _ZN4llvm8OptionalIN5swift22ApplyIsolationCrossingEEC2Ev Line | Count | Source | 275 | 141 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift10ModuleDeclENS3_10IdentifierEEEEC2Ev Line | Count | Source | 275 | 1.26k | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift5TokenEEEEC2Ev Line | Count | Source | 275 | 165 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift12StableHasherEEC2Ev Line | Count | Source | 275 | 176 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift16AttributedImportINS2_14ImportedModuleEEEEEEC2Ev Line | Count | Source | 275 | 17 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEEC2Ev Line | Count | Source | 275 | 17 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang7tooling12dependencies25DependencyScanningServiceEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEEC2Ev _ZN4llvm8OptionalIN5swift12PlatformKindEEC2Ev Line | Count | Source | 275 | 335 | constexpr Optional() = default; |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEC2Ev Line | Count | Source | 275 | 48 | constexpr Optional() = default; |
_ZN4llvm8OptionalINSt3__14pairIjjEEEC2Ev Line | Count | Source | 275 | 468 | constexpr Optional() = default; |
_ZN4llvm8OptionalIN5swift9rewriting6SymbolEEC2Ev Line | Count | Source | 275 | 6.03k | constexpr Optional() = default; |
_ZN4llvm8OptionalIPN5swift9rewriting11PropertyBagEEC2Ev Line | Count | Source | 275 | 6.19k | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift9rewriting10DebugFlagsEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CanGenericSignatureEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22MetatypeRepresentationEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_14raw_fd_ostreamEEC2Ev _ZN4llvm8OptionalIN5swift10file_types2IDEEC2Ev Line | Count | Source | 275 | 104 | constexpr Optional() = default; |
Line | Count | Source | 275 | 532 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift7FeatureEEEEC2Ev _ZN4llvm8OptionalINS_9StringRefEEC2Ev Line | Count | Source | 275 | 1.97k | constexpr Optional() = default; |
_ZN4llvm8OptionalINS0_INS_9StringRefEEEEC2Ev Line | Count | Source | 275 | 980 | constexpr Optional() = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_16NamedRegionTimerEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16BlockListKeyKindEEC2Ev Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15BlockListActionEEC2Ev Line | Count | Source | 275 | 212 | constexpr Optional() = default; |
|
276 | 2.64M | constexpr Optional(NoneType) {}_ZN4llvm8OptionalIN5swift11LangOptions23ASTVerifierOverrideKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 4 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIbEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 21.0k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11SILLocationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 7.99k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_3vfs12OutputConfigEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEEC2ENS2_9nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKNS_8FunctionEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 4.69k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_9StringRefEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6.12k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIhEC2ENSt3__19nullopt_tE Unexecuted instantiation: swift_api_digester_main.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_3cas9ObjectRefEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEC2ENS2_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22SwiftDependencyTrackerEEC2ENSt3__19nullopt_tE Unexecuted instantiation: Index.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_19MappedLocEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider15EnumElementInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12FunctionTypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16OptionalTypeKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES4_EEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19ClangRepresentationEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24FrontendInputsAndOutputsEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__13setINS_9StringRefENS1_4lessIS3_EENS1_9allocatorIS3_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19OutputFilesComputerEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift27UnavailableDeclOptimizationEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17StrictConcurrencyEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DestroyHoistingOptionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21CopyPropagationOptionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16JITDebugArtifactEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16IRGenLLVMLTOKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm8OptionalIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15LineColumnRangeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13ModuleBuffersEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__110unique_ptrINS_12MemoryBufferENS1_14default_deleteIS3_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13serialization6StatusEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift3ide3api15SDKNodeDeclTypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift3ide3api11SDKNodeDeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api7KeyKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8DeclKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12EnumCaseDeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift25EnumElementParameterValueENS1_9allocatorIS4_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift17FunctionParameterENS1_9allocatorIS4_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift13AvailableAttrEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 161 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPNS_5ValueEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_8ArrayRefIN5swift7SILTypeEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift27RestatedObjCConformanceAttrEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift5irgen19NonFixedOffsetsImplEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 146 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPNS_8FunctionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift5irgen9AtomicityEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 11 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: GenFunc.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_140AsyncPartialApplicationForwarderEmission4SelfEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift7CanTypeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 42 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_12RoundingModeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_2fp17ExceptionBehaviorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen12StackAddressEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24LoweredFunctionSignature16DirectResultTypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24LoweredFunctionSignatureEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalItEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_9CodeModel5ModelEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 9 | constexpr Optional(NoneType) {} |
IRGen.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119SymbolSourcesToEmitEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 9 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift14CanTypeWrapperINS3_15ExistentialTypeEEEjEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIxEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 7 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_10DataLayoutEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 4 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_5MachO13PackedVersionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen4SizeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift5irgen9AlignmentEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 15 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift5irgen4SizeEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift5irgen9AlignmentEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS0_IjEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14YAMLModuleNodeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_16OperandBundleUseEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8Lowering12ManagedValueES5_EEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIPKN5swift18DifferentiableAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5.81k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPKN5swift14DerivativeAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5.63k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift23KeyPathPatternComponentEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 7 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift8Lowering18SpecializedEmitterEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 79 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIPN5swift4ExprELj2EEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift8Lowering15FunctionSectionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 12 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering10ConversionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering22ConversionPeepholeHintEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift20SILAccessEnforcementEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 33 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6LValueEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering20LogicalPathComponent13AccessStorageEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift24DifferentiationThunkKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 13 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21MarkUninitializedInst4KindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14SILVTableEntryEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift16MatchingSetFlagsEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 65 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 301 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 133 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 31 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 27 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift13SILAccessKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 8 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift21EpilogueARCBlockStateEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 53 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift13EndAccessInstEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 10 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 68 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14CanTypeWrapperINS1_15SILFunctionTypeEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ValueOwnershipKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18MarkDependenceInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25SILInstructionResultArrayEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.12k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15FixLifetimeInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12TryApplyInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14AllocStackInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9ApplySiteEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_16PartialApplyInstENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEC2ENS4_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15DestroyAddrInstEEC2ENSt3__19nullopt_tE DefiniteInitialization.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16DIKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 322 | constexpr Optional(NoneType) {} |
DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 69 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117ConflictingAccessEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_14AutoDiffConfigEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEC2ENS4_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_7SILNodeENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEC2ENS4_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift13SILBasicBlockEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS5_IPNS1_7OperandENS1_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS1_14FrozenMultiMapIS7_SC_NS_11SmallVectorISE_Lj8EEEE15PairToSecondEltEEEEC2ENS4_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalINSt3__14pairIN5swift7SILTypeEjEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 19 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: PredictableMemOpt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114AvailableValueEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 88 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift13EndBorrowInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE YieldOnceCheck.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 42 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: YieldOnceCheck.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck7BBStateEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9StoreInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SymbolicValueEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16DestroyValueInstEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift17FullApplySiteKind7innertyEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 783k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift17FullApplySiteKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 783k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift13ApplySiteKind7innertyEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 58.1k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift13ApplySiteKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 58.1k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 554 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift7SILTypeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 41 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ReferenceOwnershipEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_8ArrayRefIN5swift14ProfileCounterEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 72 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift4UUIDEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 12 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 8 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift8SILValueEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 118 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift14SILInstructionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 305 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift29ConcreteOpenedExistentialInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 649 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalI20ConcreteArgumentCopyEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIyEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 39 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 530 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIPN5swift13CopyValueInstEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16DeallocStackInstEEC2ENSt3__19nullopt_tE Unexecuted instantiation: RedundantOverflowCheckRemoval.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 43 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 31 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift15StoreBorrowInstEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 28 | constexpr Optional(NoneType) {} |
SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 3 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift22LoadOwnershipQualifierEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 36 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift11SILFunctionENS3_15SubstitutionMapEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProfileCounterEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalI17WellKnownFunctionEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockES5_EEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 64.1k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift25FindLocalApplySitesResultEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 9 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN21LexicalDestroyFolding5MatchEEC2ENSt3__19nullopt_tE SILInliner.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 222 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10ModuleDeclEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_12VersionTupleEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 674 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api11SDKNodeKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift4ExprEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 75 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift4StmtEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift7PatternEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 157 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112TrailingInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5TokenEEC2ENSt3__19nullopt_tE Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8TypeReprEEC2ENSt3__19nullopt_tE Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ReferenceMetaDataEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift10CustomAttrEPNS3_4DeclEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10AccessKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12ArgumentListEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedIPNS1_12ArgumentListEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift6driver3Job9ConditionEbEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIbbEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIN5swift6driver6Driver10DriverKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver10OutputInfo7LTOKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift13OutputFileMapEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7options2IDEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS4_18ModuleDepGraphNodeEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift6driver3Job16ResponseFileInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15RequirementKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalI20LayoutConstraintKindEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 9.07k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12ReadImplKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13WriteImplKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ReadWriteImplKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DifferentiabilityKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19DefaultArgumentKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ActorIsolation4KindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16SILCoroutineKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19ParameterConventionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift29SILParameterDifferentiabilityEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16ResultConventionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift26SILResultDifferentiabilityEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang11ConceptDeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23StableSerializationPath12ExternalPath13ComponentKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang14IdentifierInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12TemplateNameEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang7TagDeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang20TemplateTypeParmDeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17StringLiteralInst8EncodingEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14SILVTableEntry4KindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift14ImportedModuleEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 213 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10ModuleDecl16ImportFilterKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11LibraryKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeEjEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift4DeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang4TypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift11DeclContextEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift16GenericSignatureEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 444 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift18GenericEnvironmentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19ProtocolConformanceEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15PackConformanceEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift9SILLayoutEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SILArgumentKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPKN5swift11EffectsAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 135 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPKN5swift10ExposeAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 174 | constexpr Optional(NoneType) {} |
SILFunctionType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 287 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift26FunctionTypeRepresentationEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift15SubstitutionMapEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 266 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift18SILDynamicCastKind7innertyEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 69.2k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift18SILDynamicCastKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 69.2k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift16BuiltinValueKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 3.20k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift10SILLinkageEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 19 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7ASTNodeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift16SILSymbolVisitor11DynamicKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 48 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9ValueBase25DefiningInstructionResultEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13OwnershipKind7innertyEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 3.59k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift10SILDeclRefEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 230 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14AnyFunctionRefEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 9 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16SubElementOffsetEEC2ENSt3__19nullopt_tE Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm8OptionalIZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift20AccessRepresentation4KindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 457 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift10BranchInstEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 32 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_7remarks14RemarkLocationEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProjectionKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProjectionPathEEC2ENSt3__19nullopt_tE Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm8OptionalIZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__15tupleIJjjEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 4 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift7OperandEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 405 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEC2ENS4_9nullopt_tE Line | Count | Source | 276 | 297 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift21LinearLifetimeChecker5ErrorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 458 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 32 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_12function_refIFvPN5swift13SILBasicBlockEEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 455 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_12function_refIFvPN5swift7OperandEEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 458 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test12BoolArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test12UIntArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test8ArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11TaggedUnionIJyxNS_9StringRefEEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift18SILInstructionKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 27 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23OpenedExistentialAccessEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CastConsumptionKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_8coverage7CounterEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23StoreOwnershipQualifierEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24AssignOwnershipQualifierEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift9BraceStmtEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 148 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints16ConstraintSystem15TypeMatchResultEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_8CaseStmtEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift13CaseLabelItemEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17CaseLabelItemInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16FunctionTypeReprEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TypeResolutionStageEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 387 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints13ConstraintFixEjEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: CSRanking.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121TypeBindingsToCompareEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 92 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17CompletionArgInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11constraints13ConstraintFixEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift15AnyFunctionType5ParamEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 13 | constexpr Optional(NoneType) {} |
CSSimplify.cpp:_ZN4llvm8OptionalINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS3_16TypeVariableTypeENS3_4TypeENS3_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 1.09k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 10 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12TupleElementEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 12 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints18MemberLookupResult14UnviableReasonEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 62 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIN5swift10IdentifierEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintEjEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 33 | constexpr Optional(NoneType) {} |
CSStep.cpp:_ZN4llvm8OptionalIZN5swift11constraints13ComponentStep4takeEbE8StepKindEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 669 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints5ScoreEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 427 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 16 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints18ConjunctionElementEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS4_11constraints17ConstraintLocatorEEEEjEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_14SaveAndRestoreIPN5swift11DeclContextEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints9ScoreKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints11FixBehaviorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__15tupleIJN5swift21ContextualTypePurposeENS3_4TypeES5_EEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJNS1_4TypeEEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_12ArgumentListEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm8OptionalIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.28k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints25SingleValueStmtBranchKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.22k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.95k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjPN5swift4ExprEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 726 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.56k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 285 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints7FixKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 26 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 4.38k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.26k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints16IUOReferenceKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.30k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints16SelectedOverloadEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 170 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__14pairIPN5swift20GenericTypeParamTypeENS3_15RequirementKindEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 2.60k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 4.83k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints23AppliedBuilderTransformEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.95k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 3.01k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.95k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints19TypeVariableBindingEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalI19RuntimeVersionCheckEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift26MagicIdentifierLiteralExpr4KindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 24 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalI35AbstractFunctionDeclLookupErrorKindEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 8 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJbNS1_4TypeEEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift19ExportabilityReasonEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift20UnavailabilityReasonEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 405 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: TypeCheckAvailability.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119ReplacementDeclKindEEC2ENSt3__19nullopt_tE TypeCheckConcurrency.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PartialApplyThunkInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 248 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift15ConcreteDeclRefENS3_9SourceLocEEEEC2ENS1_9nullopt_tE TypeCheckConcurrency.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_126MemberIsolationPropagationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 330 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift22DispatchQueueOperationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ExprKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ContextualTypePurposeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 24 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22AutomaticEnumValueKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift25PrecedenceGroupDescriptor13PathDirectionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 13 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift10ObjCReasonEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 18 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJjNS1_8DeclNameENS1_12ObjCSelectorEEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedINS1_18StaticSpellingKindEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18StaticSpellingKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEEC2ENSt3__19nullopt_tE Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_17ContextEEC2ENSt3__19nullopt_tE Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift10EffectKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 102 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 86 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExternalMacroDefinitionEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11SourceRangeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 113 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23SyntacticTypoCorrectionEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift14ActorIsolationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.84k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift22RequirementEnvironmentEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 864 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift16RequirementMatchEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 3.75k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14AutoDiffConfigEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11AccessScopeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift12VarRefUseEnvEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 174 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift15ReferencedActorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 117 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SendableCheckEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIN5swift11RequirementEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 4 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8DeclNameEEC2ENSt3__19nullopt_tE Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AbstractTypeWitnessEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25RegexCaptureStructureCodeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEC2ENSt3__19nullopt_tE Unexecuted instantiation: TypeCheckSwitchStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 30 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14TypeAttributes10ConventionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 46 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SanitizerKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPKN5clang4DeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 814 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang6ModuleEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_3sys2fs9file_typeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_3sys2fs5permsEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5clang17DirectoryEntryRefEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 66 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang19ASTSourceDescriptorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12FileEntryRefEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 154 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 16 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallStringILj128EEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_15MemoryBufferRefEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13ClangTypeKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift8importer12ImportedNameEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 37 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12PlatformKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift19CtorInitializerKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 380 | constexpr Optional(NoneType) {} |
ImportDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12DeclBaseNameEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift18MappedTypeNameKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift16GenericParamListEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.35k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang8QualTypeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_6APSIntEN5swift4TypeEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4KindEEC2ENSt3__19nullopt_tE ImportName.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 66 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: ImportType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112ImportResultEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang8EnumDeclEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13ClangImporter14Implementation25ImportParameterTypeResultEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10InlineKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16OptimizationModeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15ExclusivityAttr4ModeEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift4DiagIJNS_9StringRefES3_EEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 166 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13AssociativityEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift27MacroIntroducedDeclNameKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15NonSendableKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8StmtKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21PlatformConditionKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15TuplePatternEltEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift12StableHasherEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 138 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__16vectorIN5swift5TokenENS1_9allocatorIS4_EEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 17 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalImEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINS_8ArrayRefIN5swift7ASTNodeEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 17 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift23SourceFileParsingResultEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 17 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift7VarDecl10IntroducerEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 172 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7version7VersionEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift12AccessorKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 19 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15AccessNotesFileEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 6 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift15EnumElementDeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.13k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_13TinyPtrVectorIPN5swift9ValueDeclEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 545 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift18ExternalSourceLocsEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 31 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift22ForeignErrorConventionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 4.20k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.92k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21KnownFoundationEntityEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift22MetatypeRepresentationEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6.63k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift17KnownProtocolKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5.19k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift4TypeEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 30.3k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPKN5swift13SemanticsAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 301 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift10ASTExtInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 24.5k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift13SILResultInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5.20k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15TypeLookupErrorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle23ImplParameterConventionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle30ImplParameterDifferentiabilityEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle20ImplResultConventionEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle27ImplResultDifferentiabilityEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIcEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 142 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift6Mangle10ASTMangler14SpecialContextEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.57k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift7VarDeclEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPKN5swift14SpecializeAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 311 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift23OriginallyDefinedInAttrEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPKN5swift23SynthesizedProtocolAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift9SourceLocEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 264 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift13DeclAttributeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjjEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift8TypeReprEjEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23OriginallyDefinedInAttr13ActiveVersionEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 11 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPKN5swift15NonSendableAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 12 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 500 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift19AvailabilityContextEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 6.20k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 8.35k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10ImportKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift10IdentifierEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 246 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15KeyPathTypeKindEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift20ImplicitMemberActionEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 242 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift26KnownDerivableProtocolKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift8CaseStmtEPNS3_7PatternEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 6.91k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14ParamSpecifierEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 157 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift25PropertyWrapperMutabilityEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 142 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11InitializerEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift18BodyAndFingerprintEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 89 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16BuiltinMacroKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift13MacroRoleAttrEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift4DeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 67 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14DiagnosticInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift6markup10ParamFieldEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10RawCommentEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEC2ENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEC2ENS1_9nullopt_tE _ZN4llvm8OptionalIN5swift24UnexpectedClangTypeErrorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 109k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25fine_grained_dependencies18SourceFileDepGraphEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift11FingerprintEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 43.2k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25fine_grained_dependencies8NodeKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25fine_grained_dependencies10DeclAspectEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift12ObjCSelectorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 11 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift11AccessLevelEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.63k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift9MacroRoleEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 93 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift18ExternalSourceLocs7RawLocsEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 31 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 18.2k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift38PropertyWrapperSynthesizedPropertyKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1.31k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift18ArtificialMainKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 10 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11CommentInfoEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPKN5swift10CustomAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 5.20k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPKN5swift20SPIAccessControlAttrEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 646 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift20ModuleDependencyInfoEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8CaseStmtEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift9ClassDeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 84 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_8ArrayRefIPN5swift12ProtocolDeclEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 238 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_8ArrayRefIPN5swift9ValueDeclEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 23 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift15NominalTypeDeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 13 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift14DestructorDeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefINS_9StringRefEEEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift9rewriting11PropertyBagEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 25.5k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9rewriting10DebugFlagsEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift9rewriting6SymbolEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 48.4k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift9rewriting4TermEEEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 722 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift22ProtocolConformanceRefEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 29 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15cxx_translation19RepresentationErrorEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12TangentSpaceEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift20RequirementSignatureEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 324 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift14SelfAccessKindEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 110 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift19OpaqueReadOwnershipEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 45 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift15StorageImplInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 137 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift12AccessorDeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 73 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__15tupleIJEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 267 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPKN5swift19PatternBindingEntryEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 46 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIPN5swift12NamedPatternEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 22 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ExprPatternMatchResultEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift18TypeWitnessAndDeclEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7WitnessEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIPN5swift11IndexSubsetEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 25 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift13ArchetypeTypeEPNS3_23OpaqueTypeArchetypeTypeEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 59 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIDnEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIdEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21EditorPlaceholderDataEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIN5swift18DiagnosticBehaviorEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 2.91k | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7FeatureEEC2ENSt3__19nullopt_tE _ZN4llvm8OptionalIjEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 266k | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalIN5swift19GeneratedSourceInfoEEC2ENSt3__19nullopt_tE Line | Count | Source | 276 | 605 | constexpr Optional(NoneType) {} |
_ZN4llvm8OptionalINSt3__16vectorIiNS1_9allocatorIiEEEEEC2ENS1_9nullopt_tE Line | Count | Source | 276 | 1 | constexpr Optional(NoneType) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIiEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle4Node4KindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle16ValueWitnessKindEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle10DirectnessEEC2ENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6markup12CommentPartsEEC2ENSt3__19nullopt_tE |
277 | | |
278 | 329k | constexpr Optional(const T &y) : Storage(std::in_place, y) {}_ZN4llvm8OptionalINS_3vfs12OutputConfigEEC2ERKS2_ Line | Count | Source | 278 | 4 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_3cas9ObjectRefEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyKindEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ModuleDependencyIDEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider15EnumElementInfoEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12FunctionTypeEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15NominalTypeDeclEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16OptionalTypeKindEEC2ERKS2_ _ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEC2ERKSA_ Line | Count | Source | 278 | 11 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift25EnumElementParameterValueENS1_9allocatorIS4_EEEEEC2ERKS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift17FunctionParameterENS1_9allocatorIS4_EEEEEC2ERKS7_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIN5swift7SILTypeEEEEC2ERKS4_ _ZN4llvm8OptionalIN5swift7CanTypeEEC2ERKS2_ Line | Count | Source | 278 | 33 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift5irgen9AtomicityEEC2ERKS3_ Line | Count | Source | 278 | 2 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14MetadataSourceEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18GenericRequirementEEC2ERKS2_ _ZN4llvm8OptionalINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS5_12ConstantInitEEEEEC2ERKSA_ Line | Count | Source | 278 | 21 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalINS_5APIntEEC2ERKS1_ Line | Count | Source | 278 | 32 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalItEC2ERKt Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen4SizeEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen9AlignmentEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEEC2ERKS6_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIN5swift14ProfileCounterEEEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23KeyPathPatternComponentEEC2ERKS2_ _ZN4llvm8OptionalIN5swift21MarkUninitializedInst4KindEEC2ERKS3_ Line | Count | Source | 278 | 5 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEC2ERKS3_ Line | Count | Source | 278 | 7 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering8JumpDestEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEEC2ERKS4_ _ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEEC2ERKS3_ Line | Count | Source | 278 | 22 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIPN5swift13SILBasicBlockEEC2ERKS3_ Line | Count | Source | 278 | 20.2k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEC2ERKS3_ Line | Count | Source | 278 | 5.19k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKjEC2ERKS2_ _ZN4llvm8OptionalIN5swift24DifferentiationThunkKindEEC2ERKS2_ Line | Count | Source | 278 | 7 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9ApplySiteEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14AllocStackInstEEC2ERKS3_ _ZN4llvm8OptionalIPN5swift15DestroyAddrInstEEC2ERKS3_ Line | Count | Source | 278 | 18 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20DebugVarCarryingInstEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift22SingleValueInstructionEEC2ERKS3_ _ZN4llvm8OptionalIN5swift8SILValueEEC2ERKS2_ Line | Count | Source | 278 | 1.51k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift20SILModuleConventionsEEC2ERKS2_ Line | Count | Source | 278 | 954 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIPN5swift14SILInstructionEEC2ERKS3_ Line | Count | Source | 278 | 64.0k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11semanticarc7Context21ConsumingOperandStateEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SymbolicValueEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7SILTypeEEC2ERKS2_ _ZN4llvm8OptionalIN5swift11SILLocationEEC2ERKS2_ Line | Count | Source | 278 | 331 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10ModuleDeclEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ReferenceMetaDataEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift10CustomAttrEPNS3_4DeclEEEEC2ERKS9_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13OutputFileMapEEC2ERKS2_ _ZN4llvm8OptionalINS_9StringRefEEC2ERKS1_ Line | Count | Source | 278 | 980 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEC2ERKSD_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang11ConceptDeclEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang14IdentifierInfoEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang7TagDeclEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang20TemplateTypeParmDeclEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11CommentInfoEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang8QualTypeEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang11ConceptDeclEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang14IdentifierInfoEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12TemplateNameEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang7TagDeclEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang20TemplateTypeParmDeclEEC2ERKS4_ _ZN4llvm8OptionalIN5swift22MetatypeRepresentationEEC2ERKS2_ Line | Count | Source | 278 | 83 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift10SILDeclRefEEC2ERKS2_ Line | Count | Source | 278 | 482 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift16BuiltinValueKindEEC2ERKS2_ Line | Count | Source | 278 | 90.3k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEEC2ERKS2_ Line | Count | Source | 278 | 822 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIyEC2ERKy _ZN4llvm8OptionalIN5swift18ValueOwnershipKindEEC2ERKS2_ Line | Count | Source | 278 | 15 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ProfileCounterRefEEC2ERKS2_ Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7ASTNodeEEC2ERKS2_ _ZN4llvm8OptionalIN5swift14SILVTableEntryEEC2ERKS2_ Line | Count | Source | 278 | 21 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIPKNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEEC2ERKS6_ Line | Count | Source | 278 | 5.20k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProjectionPathEEC2ERKS2_ _ZN4llvm8OptionalIN5swift10ProjectionEEC2ERKS2_ Line | Count | Source | 278 | 46 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIPN5swift7OperandEEC2ERKS3_ Line | Count | Source | 278 | 531 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalINS_12function_refIFvPN5swift13SILBasicBlockEEEEEC2ERKS6_ Line | Count | Source | 278 | 3 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test8ArgumentEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift13CaseLabelItemEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17CaseLabelItemInfoEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeEEC2ERKS5_ _ZN4llvm8OptionalIPN5swift11constraints13ConstraintFixEEC2ERKS4_ Line | Count | Source | 278 | 42 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift15AnyFunctionType5ParamEEC2ERKS3_ Line | Count | Source | 278 | 179 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12TupleElementEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyEEC2ERKS5_ _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeEEC2ERKS5_ Line | Count | Source | 278 | 8 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift11constraints18MemberLookupResult14UnviableReasonEEC2ERKS4_ Line | Count | Source | 278 | 1 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchEEC2ERKS5_ _ZN4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEEC2ERKS3_ Line | Count | Source | 278 | 209 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJNS1_4TypeEEEEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchEEC2ERKS5_ _ZN4llvm8OptionalINSt3__14pairIjPN5swift4ExprEEEEC2ERKS6_ Line | Count | Source | 278 | 15 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEEC2ERKS3_ Line | Count | Source | 278 | 410 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SourceRangeEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentEEC2ERKS5_ _ZN4llvm8OptionalIN5swift11constraints16SelectedOverloadEEC2ERKS3_ Line | Count | Source | 278 | 1.51k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14AnyFunctionRefEEC2ERKS2_ _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementEEC2ERKS5_ Line | Count | Source | 278 | 4.29k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementEEC2ERKS5_ _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericEEC2ERKS5_ Line | Count | Source | 278 | 4.83k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints23AppliedBuilderTransformEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableEEC2ERKS5_ _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamEEC2ERKS5_ Line | Count | Source | 278 | 3 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJEEEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJbNS1_4TypeEEEEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AvailabilityContextEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEC2ERKS4_ _ZN4llvm8OptionalIN5swift15ReferencedActorEEC2ERKS2_ Line | Count | Source | 278 | 54 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift13SendableCheckEEC2ERKS2_ Line | Count | Source | 278 | 60 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEC2ERKS3_ Line | Count | Source | 278 | 224 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PrecedenceGroupDescriptor13PathDirectionEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJjNS1_8DeclNameENS1_12ObjCSelectorEEEEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18StaticSpellingKindEEC2ERKS2_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExternalMacroDefinitionEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11AccessScopeEEC2ERKS2_ _ZN4llvm8OptionalIN5swift14ActorIsolationEEC2ERKS2_ Line | Count | Source | 278 | 117 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEC2ERKS4_ Line | Count | Source | 278 | 24.8k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift11RequirementEEC2ERKS2_ Line | Count | Source | 278 | 3.31k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift22RequirementEnvironmentEEC2ERKS2_ Line | Count | Source | 278 | 119 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
TypeCheckSwitchStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEC2ERKS3_ Line | Count | Source | 278 | 52 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIPN5swift16FunctionTypeReprEEC2ERKS3_ Line | Count | Source | 278 | 34 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2ERKS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang19ASTSourceDescriptorEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21EffectiveClangContextEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12DeclBaseNameEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13ClangTypeKindEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8importer12ImportedNameEEC2ERKS3_ _ZN4llvm8OptionalIPN5swift4DeclEEC2ERKS3_ Line | Count | Source | 278 | 57 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CtorInitializerKindEEC2ERKS2_ _ZN4llvm8OptionalIN5swift18MappedTypeNameKindEEC2ERKS2_ Line | Count | Source | 278 | 10 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEC2ERKS7_ _ZN4llvm8OptionalIN5swift4DiagIJNS_9StringRefES3_EEEEC2ERKS4_ Line | Count | Source | 278 | 752 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10InlineKindEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16OptimizationModeEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15ExclusivityAttr4ModeEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ReferenceOwnershipEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15NonSendableKindEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8StmtKindEEC2ERKS2_ _ZN4llvm8OptionalIN5swift7version7VersionEEC2ERKS3_ Line | Count | Source | 278 | 163 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalImEC2ERKm _ZN4llvm8OptionalIPN5swift18ExternalSourceLocsEEC2ERKS3_ Line | Count | Source | 278 | 185 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConventionEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEEC2ERKS2_ _ZN4llvm8OptionalIN5swift10ASTExtInfoEEC2ERKS2_ Line | Count | Source | 278 | 6.46k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15TypeLookupErrorEEC2ERKS2_ _ZN4llvm8OptionalIN5swift14BracketOptionsEEC2ERKS2_ Line | Count | Source | 278 | 108 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift9SourceLocEEC2ERKS2_ Line | Count | Source | 278 | 256 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalINS_12VersionTupleEEC2ERKS1_ Line | Count | Source | 278 | 1.34k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIbEC2ERKb Line | Count | Source | 278 | 240 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12ObjCSelectorEEC2ERKS2_ _ZN4llvm8OptionalIN5swift18BodyAndFingerprintEEC2ERKS2_ Line | Count | Source | 278 | 25.5k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeEEC2ERKS4_ _ZN4llvm8OptionalIN5swift11FingerprintEEC2ERKS2_ Line | Count | Source | 278 | 962 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ArtificialMainKindEEC2ERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift20ModuleDependencyInfoEEC2ERKS4_ _ZN4llvm8OptionalINS_8ArrayRefIPN5swift12ProtocolDeclEEEEC2ERKS5_ Line | Count | Source | 278 | 3.58k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalINS_8ArrayRefIPN5swift9ValueDeclEEEEC2ERKS5_ Line | Count | Source | 278 | 101 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIN5swift9rewriting4TermEEEEC2ERKS5_ _ZN4llvm8OptionalIN5swift22ProtocolConformanceRefEEC2ERKS2_ Line | Count | Source | 278 | 442 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SILResultInfoEEC2ERKS2_ _ZN4llvm8OptionalIN5swift20RequirementSignatureEEC2ERKS2_ Line | Count | Source | 278 | 3.37k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift15StorageImplInfoEEC2ERKS2_ Line | Count | Source | 278 | 2.54k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18TypeWitnessAndDeclEEC2ERKS2_ _ZN4llvm8OptionalIN5swift7WitnessEEC2ERKS2_ Line | Count | Source | 278 | 108 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift4TypeEEC2ERKS2_ Line | Count | Source | 278 | 106 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIdEC2ERKd Unexecuted instantiation: _ZN4llvm8OptionalIxEC2ERKx _ZN4llvm8OptionalIjEC2ERKj Line | Count | Source | 278 | 51.5k | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
_ZN4llvm8OptionalIN5swift19GeneratedSourceInfoEEC2ERKS2_ Line | Count | Source | 278 | 2 | constexpr Optional(const T &y) : Storage(std::in_place, y) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIiEC2ERKi |
279 | 40.5k | constexpr Optional(const Optional &O) = default; _ZN4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEEC2ERKSA_ Line | Count | Source | 279 | 13 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEEC2ERKS5_ Line | Count | Source | 279 | 14 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEC2ERKS9_ _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2ERKS8_ Line | Count | Source | 279 | 2 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalIN5clang10CASOptionsEEC2ERKS3_ Line | Count | Source | 279 | 2 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEC2ERKS4_ DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEEC2ERKS4_ Line | Count | Source | 279 | 84 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22SwiftDependencyTrackerEEC2ERKS3_ _ZN4llvm8OptionalIN5swift7version7VersionEEC2ERKS4_ Line | Count | Source | 279 | 1 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift17FunctionParameterENS1_9allocatorIS4_EEEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift15CustomAttrValueELj2EEEEC2ERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift25EnumElementParameterValueENS1_9allocatorIS4_EEEEEC2ERKS8_ _ZN4llvm8OptionalINS_5APIntEEC2ERKS2_ Line | Count | Source | 279 | 376 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINS_10PGOOptionsEEC2ERKS2_ Line | Count | Source | 279 | 2 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEC2ERKS5_ Line | Count | Source | 279 | 71 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEEC2ERKS4_ Line | Count | Source | 279 | 765 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEC2ERKS7_ Line | Count | Source | 279 | 3.08k | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEC2ERKS7_ Line | Count | Source | 279 | 4.65k | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEC2ERKS8_ Line | Count | Source | 279 | 124 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEC2ERKS8_ _ZN4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEC2ERKS7_ Line | Count | Source | 279 | 130 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEC2ERKSK_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEC2ERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2ERKSL_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEC2ERKSK_ _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEC2ERKSJ_ Line | Count | Source | 279 | 1.67k | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEC2ERKSI_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEC2ERKSA_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEC2ERKSG_ _ZN4llvm8OptionalIN5swift16SILDebugVariableEEC2ERKS3_ Line | Count | Source | 279 | 941 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEEC2ERKS6_ Line | Count | Source | 279 | 37 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEC2ERKSN_ Line | Count | Source | 279 | 10.0k | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEC2ERKS7_ Line | Count | Source | 279 | 658 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEC2ERKSC_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6markup12CommentPartsEEC2ERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift10CustomAttrEPNS3_4DeclEEEEC2ERKSA_ _ZN4llvm8OptionalIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingEEC2ERKS4_ Line | Count | Source | 279 | 32 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINS_6TripleEEC2ERKS2_ Line | Count | Source | 279 | 8 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS4_18ModuleDepGraphNodeEEEEC2ERKSA_ _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2ERKSL_ Line | Count | Source | 279 | 266 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEEC2ERKS7_ Line | Count | Source | 279 | 99 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEEC2ERKS4_ Line | Count | Source | 279 | 1.32k | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalIN5swift15ReferencedActorEEC2ERKS3_ Line | Count | Source | 279 | 44 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoEEC2ERKS4_ Line | Count | Source | 279 | 86 | constexpr Optional(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift11AccessScopeEbEEEC2ERKS6_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEC2ERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEC2ERKSB_ _ZN4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEC2ERKS8_ Line | Count | Source | 279 | 492 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEC2ERKSB_ Line | Count | Source | 279 | 918 | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEC2ERKS9_ Line | Count | Source | 279 | 11.9k | constexpr Optional(const Optional &O) = default; |
_ZN4llvm8OptionalIN5swift11FingerprintEEC2ERKS3_ Line | Count | Source | 279 | 2.67k | constexpr Optional(const Optional &O) = default; |
|
280 | | |
281 | 1.60M | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {}Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11LangOptions23ASTVerifierOverrideKindEEC2EOS3_ _ZN4llvm8OptionalIbEC2EOb Line | Count | Source | 281 | 59.5k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: swift_api_digester_main.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindEEC2EOS3_ _ZN4llvm8OptionalINS_9StringRefEEC2EOS1_ Line | Count | Source | 281 | 1.55k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEC2EOSA_ Line | Count | Source | 281 | 224 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22SwiftDependencyTrackerEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyKindEEC2EOS2_ Unexecuted instantiation: Index.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_19MappedLocEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16OptionalTypeKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19ClangRepresentationEEC2EOS2_ _ZN4llvm8OptionalIN5swift24FrontendInputsAndOutputsEEC2EOS2_ Line | Count | Source | 281 | 13 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__13setINS_9StringRefENS1_4lessIS3_EENS1_9allocatorIS3_EEEEEC2EOS8_ Line | Count | Source | 281 | 13 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEC2EOS3_ _ZN4llvm8OptionalIN5swift19OutputFilesComputerEEC2EOS2_ Line | Count | Source | 281 | 11 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEEC2EOS7_ Line | Count | Source | 281 | 22 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift24SupplementaryOutputPathsEEC2EOS2_ Line | Count | Source | 281 | 11 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryEC2EOSF_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift27UnavailableDeclOptimizationEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17StrictConcurrencyEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEC2EOS2_ _ZN4llvm8OptionalINS_12VersionTupleEEC2EOS1_ Line | Count | Source | 281 | 95 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DestroyHoistingOptionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21CopyPropagationOptionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16JITDebugArtifactEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16IRGenLLVMLTOKindEEC2EOS2_ DiagnosticVerifier.cpp:_ZN4llvm8OptionalIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnEC2EOSB_ Line | Count | Source | 281 | 12 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift15LineColumnRangeEEC2EOS2_ Line | Count | Source | 281 | 6 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift13ModuleBuffersEEC2EOS2_ Line | Count | Source | 281 | 19 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__110unique_ptrINS_12MemoryBufferENS1_14default_deleteIS3_EEEEEC2EOS6_ _ZN4llvm8OptionalIN5swift14SourceFileKindEEC2EOS2_ Line | Count | Source | 281 | 11 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift9SourceLocEEC2EOS2_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift3ide3api15SDKNodeDeclTypeEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift3ide3api11SDKNodeDeclEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api7KeyKindEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8DeclKindEEC2EOS2_ _ZN4llvm8OptionalIPN5swift12EnumCaseDeclEEC2EOS3_ Line | Count | Source | 281 | 5 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift15CustomAttrValueELj2EEEEC2EOS4_ _ZN4llvm8OptionalIPN5swift4ExprEEC2EOS3_ Line | Count | Source | 281 | 31.3k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift4StmtEEC2EOS3_ Line | Count | Source | 281 | 4.23k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift7PatternEEC2EOS3_ Line | Count | Source | 281 | 3.81k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift12ArgumentListEEC2EOS3_ Line | Count | Source | 281 | 4.68k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift13AvailableAttrEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift27RestatedObjCConformanceAttrEEC2EOS4_ _ZN4llvm8OptionalIPNS_8FunctionEEC2EOS2_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen12StackAddressEEC2EOS3_ _ZN4llvm8OptionalIPN5swift5irgen19NonFixedOffsetsImplEEC2EOS4_ Line | Count | Source | 281 | 20 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINS_5APIntEEC2EOS1_ Line | Count | Source | 281 | 131 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24LoweredFunctionSignature16DirectResultTypeEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24LoweredFunctionSignatureEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorEEC2EOS4_ _ZN4llvm8OptionalINS_5Reloc5ModelEEC2EOS2_ Line | Count | Source | 281 | 9 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119SymbolSourcesToEmitEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift14CanTypeWrapperINS3_15ExistentialTypeEEEjEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIhEC2EOh Unexecuted instantiation: _ZN4llvm8OptionalINS_5MachO13PackedVersionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen4SizeEEC2EOS3_ _ZN4llvm8OptionalIN5swift5irgen9AlignmentEEC2EOS3_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIPNS_8ConstantEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14YAMLModuleNodeEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_16OperandBundleUseEEC2EOS1_ _ZN4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEEC2EOS3_ Line | Count | Source | 281 | 435 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8Lowering12ManagedValueES5_EEEC2EOS6_ _ZN4llvm8OptionalIPKN5swift18DifferentiableAttrEEC2EOS4_ Line | Count | Source | 281 | 387 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPKN5swift14DerivativeAttrEEC2EOS4_ Line | Count | Source | 281 | 84 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEC2EOS4_ _ZN4llvm8OptionalIN5swift11SILLocationEEC2EOS2_ Line | Count | Source | 281 | 239 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering18SpecializedEmitterEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIPN5swift4ExprELj2EEEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering10ConversionEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering22ConversionPeepholeHintEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockES5_EEEC2EOS6_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6LValueEEC2EOS3_ _ZN4llvm8OptionalIN5swift20SILAccessEnforcementEEC2EOS2_ Line | Count | Source | 281 | 21 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering20LogicalPathComponent13AccessStorageEEC2EOS4_ _ZN4llvm8OptionalIN5swift8Lowering15FunctionSectionEEC2EOS3_ Line | Count | Source | 281 | 6 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14SILVTableEntryEEC2EOS2_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEEC2EOS3_ _ZN4llvm8OptionalIN5swift16MatchingSetFlagsEEC2EOS2_ Line | Count | Source | 281 | 227 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEC2EOS6_ Line | Count | Source | 281 | 482 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEC2EOS6_ Line | Count | Source | 281 | 495 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEC2EOS7_ Line | Count | Source | 281 | 124 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEC2EOS7_ Line | Count | Source | 281 | 140 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SILAccessKindEEC2EOS2_ _ZN4llvm8OptionalIN5swift12AccessorKindEEC2EOS2_ Line | Count | Source | 281 | 633 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift21EpilogueARCBlockStateEEC2EOS3_ Line | Count | Source | 281 | 4.86k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift13EndAccessInstEEC2EOS3_ Line | Count | Source | 281 | 30 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEC2EOS6_ Line | Count | Source | 281 | 17 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift16SILParameterInfoEEC2EOS2_ Line | Count | Source | 281 | 582 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ValueOwnershipKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18MarkDependenceInstEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25SILInstructionResultArrayEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15FixLifetimeInstEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12TryApplyInstEEC2EOS3_ _ZN4llvm8OptionalINS_8ArrayRefIN5swift14ProfileCounterEEEEC2EOS4_ Line | Count | Source | 281 | 11 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_16PartialApplyInstENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEC2EOSI_ DefiniteInitialization.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16DIKindEEC2EOS2_ Line | Count | Source | 281 | 50 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117ConflictingAccessEEC2EOS2_ _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_14AutoDiffConfigEEEEC2EOS6_ Line | Count | Source | 281 | 8 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSJ_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEC2EOSH_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_7SILNodeENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEC2EOSH_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift13SILBasicBlockEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS5_IPNS1_7OperandENS1_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS1_14FrozenMultiMapIS7_SC_NS_11SmallVectorISE_Lj8EEEE15PairToSecondEltEEEEC2EOSL_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSK_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_8SILValueEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEC2EOSJ_ _ZN4llvm8OptionalINSt3__14pairIN5swift7SILTypeEjEEEC2EOS5_ Line | Count | Source | 281 | 44 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEC2EOSI_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift13EndBorrowInstEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSH_ YieldOnceCheck.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck7BBStateEEC2EOS3_ Line | Count | Source | 281 | 18 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEC2EOS9_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9StoreInstEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEC2EOSF_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13BorrowedValueEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16DestroyValueInstEEC2EOS3_ _ZN4llvm8OptionalIN5swift17FullApplySiteKind7innertyEEC2EOS3_ Line | Count | Source | 281 | 116k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift17FullApplySiteKindEEC2EOS2_ Line | Count | Source | 281 | 101k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift13ApplySiteKind7innertyEEC2EOS3_ Line | Count | Source | 281 | 287k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift13ApplySiteKindEEC2EOS2_ Line | Count | Source | 281 | 46.9k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEEC2EOS2_ Line | Count | Source | 281 | 1.51k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINS_5AlignEEC2EOS1_ Line | Count | Source | 281 | 4 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ReferenceOwnershipEEC2EOS2_ _ZN4llvm8OptionalIN5swift8SILValueEEC2EOS2_ Line | Count | Source | 281 | 22.7k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift29ConcreteOpenedExistentialInfoEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalI20ConcreteArgumentCopyEC2EOS1_ _ZN4llvm8OptionalIyEC2EOy Line | Count | Source | 281 | 772 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEC2EOSM_ _ZN4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEEC2EOS5_ Line | Count | Source | 281 | 139 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEEC2EOS7_ _ZN4llvm8OptionalIPN5swift13CopyValueInstEEC2EOS3_ Line | Count | Source | 281 | 9 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16DeallocStackInstEEC2EOS3_ RedundantOverflowCheckRemoval.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationEEC2EOS3_ Line | Count | Source | 281 | 16 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEC2EOS6_ Line | Count | Source | 281 | 121 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEC2EOSB_ Line | Count | Source | 281 | 46 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12siloptimizer7CleanupIvJPNS1_14SILInstructionEEEEEC2EOS6_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15StoreBorrowInstEEC2EOS3_ SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEEC2EOS2_ Line | Count | Source | 281 | 24 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift10SILLinkageEEC2EOS2_ Line | Count | Source | 281 | 475 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift22LoadOwnershipQualifierEEC2EOS2_ Line | Count | Source | 281 | 1.94k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift11SILFunctionENS3_15SubstitutionMapEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProfileCounterEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SymbolicValueEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalI17WellKnownFunctionEC2EOS1_ _ZN4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEEC2EOS8_ Line | Count | Source | 281 | 639 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN21LexicalDestroyFolding5MatchEEC2EOS2_ Unexecuted instantiation: SILInliner.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api11SDKNodeKindEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ArgumentEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5TokenEEC2EOS2_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112TrailingInfoEEC2EOS2_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8TypeReprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10AccessKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEEC2EOSA_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift6driver3Job9ConditionEbEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIbbEEEC2EOS3_ _ZN4llvm8OptionalIiEC2EOi Line | Count | Source | 281 | 89.4k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift6driver6Driver10DriverKindEEC2EOS4_ Line | Count | Source | 281 | 75 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver10OutputInfo7LTOKindEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7options2IDEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEC2EOSD_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS4_18ModuleDepGraphNodeEEEEC2EOS9_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11NullablePtrINS1_25fine_grained_dependencies18ModuleDepGraphNodeEEEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver3Job16ResponseFileInfoEEC2EOS4_ _ZN4llvm8OptionalIN5swift15RequirementKindEEC2EOS2_ Line | Count | Source | 281 | 1.46k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalI20LayoutConstraintKindEC2EOS1_ Line | Count | Source | 281 | 14 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEEC2EOS2_ Line | Count | Source | 281 | 9.35k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift12ReadImplKindEEC2EOS2_ Line | Count | Source | 281 | 374 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift13WriteImplKindEEC2EOS2_ Line | Count | Source | 281 | 374 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift17ReadWriteImplKindEEC2EOS2_ Line | Count | Source | 281 | 374 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift21DifferentiabilityKindEEC2EOS2_ Line | Count | Source | 281 | 322 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift19DefaultArgumentKindEEC2EOS2_ Line | Count | Source | 281 | 4.15k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14ActorIsolation4KindEEC2EOS3_ Line | Count | Source | 281 | 4.15k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift18StaticSpellingKindEEC2EOS2_ Line | Count | Source | 281 | 2.89k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift16SILCoroutineKindEEC2EOS2_ Line | Count | Source | 281 | 267 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift19ParameterConventionEEC2EOS2_ Line | Count | Source | 281 | 817 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift29SILParameterDifferentiabilityEEC2EOS2_ _ZN4llvm8OptionalIN5swift16ResultConventionEEC2EOS2_ Line | Count | Source | 281 | 220 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift26SILResultDifferentiabilityEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConventionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23StableSerializationPath12ExternalPath13ComponentKindEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23KeyPathPatternComponentEEC2EOS2_ _ZN4llvm8OptionalIN5swift17StringLiteralInst8EncodingEEC2EOS3_ Line | Count | Source | 281 | 488 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14SILVTableEntry4KindEEC2EOS3_ Line | Count | Source | 281 | 10 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift10ModuleDecl16ImportFilterKindEEC2EOS3_ Line | Count | Source | 281 | 213 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11LibraryKindEEC2EOS2_ Line | Count | Source | 281 | 71 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeEjEEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift4DeclEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang4TypeEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift11DeclContextEEC2EOS4_ _ZN4llvm8OptionalIN5swift16GenericSignatureEEC2EOS2_ Line | Count | Source | 281 | 44.2k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift18GenericEnvironmentEEC2EOS4_ _ZN4llvm8OptionalIN5swift15SubstitutionMapEEC2EOS2_ Line | Count | Source | 281 | 2 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19ProtocolConformanceEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15PackConformanceEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift9SILLayoutEEC2EOS4_ _ZN4llvm8OptionalIN5swift15SILArgumentKindEEC2EOS2_ Line | Count | Source | 281 | 27.1k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPKN5swift11EffectsAttrEEC2EOS4_ Line | Count | Source | 281 | 20 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift10ExposeAttrEEC2EOS4_ _ZN4llvm8OptionalIN5swift22MetatypeRepresentationEEC2EOS2_ Line | Count | Source | 281 | 632 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift26FunctionTypeRepresentationEEC2EOS2_ Line | Count | Source | 281 | 58 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift10ASTExtInfoEEC2EOS2_ Line | Count | Source | 281 | 6.11k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift18SILDynamicCastKind7innertyEEC2EOS3_ Line | Count | Source | 281 | 1.61k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift18SILDynamicCastKindEEC2EOS2_ Line | Count | Source | 281 | 41 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift7SILTypeEEC2EOS2_ Line | Count | Source | 281 | 12.5k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16SILSymbolVisitor11DynamicKindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9ValueBase25DefiningInstructionResultEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13OwnershipKind7innertyEEC2EOS3_ _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEEC2EOS5_ Line | Count | Source | 281 | 6 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14AnyFunctionRefEEC2EOS2_ Line | Count | Source | 281 | 877 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16SubElementOffsetEEC2EOS2_ Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm8OptionalIZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEC2EOSF_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10BranchInstEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_7remarks14RemarkLocationEEC2EOS2_ _ZN4llvm8OptionalIN5swift14ProjectionKindEEC2EOS2_ Line | Count | Source | 281 | 3.78k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14ProjectionPathEEC2EOS2_ Line | Count | Source | 281 | 8 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm8OptionalIZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEC2EOSF_ _ZN4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEEC2EOS5_ Line | Count | Source | 281 | 4 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEC2EOSI_ Line | Count | Source | 281 | 161 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSK_ Unexecuted instantiation: _ZN4llvm8OptionalINS_12function_refIFvPN5swift7OperandEEEEEC2EOS6_ _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker5ErrorEEC2EOS3_ Line | Count | Source | 281 | 19.6k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test12BoolArgumentEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test12UIntArgumentEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test8ArgumentEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11TaggedUnionIJyxNS_9StringRefEEEEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4test14StringArgumentEEC2EOS3_ _ZN4llvm8OptionalIN5swift18SILInstructionKindEEC2EOS2_ Line | Count | Source | 281 | 5.75k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23OpenedExistentialAccessEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CastConsumptionKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8coverage7CounterEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23StoreOwnershipQualifierEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24AssignOwnershipQualifierEEC2EOS2_ _ZN4llvm8OptionalIPN5swift9BraceStmtEEC2EOS3_ Line | Count | Source | 281 | 397 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints16ConstraintSystem15TypeMatchResultEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_8CaseStmtEEEEC2EOS8_ _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEC2EOS3_ Line | Count | Source | 281 | 122 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEEC2EOS4_ Line | Count | Source | 281 | 658 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints13ConstraintFixEjEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEEC2EOS3_ Unexecuted instantiation: CSRanking.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121TypeBindingsToCompareEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEEC2EOS3_ _ZN4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEEC2EOS3_ Line | Count | Source | 281 | 1.23k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17CompletionArgInfoEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints7FixKindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15AnyFunctionType5ParamEEC2EOS3_ Unexecuted instantiation: CSSimplify.cpp:_ZN4llvm8OptionalINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS3_16TypeVariableTypeENS3_4TypeENS3_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEEEC2EOSD_ _ZN4llvm8OptionalINS_8ArrayRefIN5swift10IdentifierEEEEC2EOS4_ Line | Count | Source | 281 | 2 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11constraints8SolutionEEC2EOS3_ Line | Count | Source | 281 | 545 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEEC2EOS8_ Line | Count | Source | 281 | 113 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintEjEEEC2EOS7_ Line | Count | Source | 281 | 35 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
CSStep.cpp:_ZN4llvm8OptionalIZN5swift11constraints13ComponentStep4takeEbE8StepKindEC2EOS4_ Line | Count | Source | 281 | 106 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11constraints5ScoreEEC2EOS3_ Line | Count | Source | 281 | 29 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEEC2EOS3_ Line | Count | Source | 281 | 614 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints18ConjunctionElementEEC2EOS3_ _ZN4llvm8OptionalIN5swift11constraints9ScoreKindEEC2EOS3_ Line | Count | Source | 281 | 1.44k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints11FixBehaviorEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__15tupleIJN5swift21ContextualTypePurposeENS3_4TypeES5_EEEEC2EOS6_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_12ArgumentListEEEEC2EOS8_ Unexecuted instantiation: CSDiagnostics.cpp:_ZN4llvm8OptionalIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints25SingleValueStmtBranchKindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints16IUOReferenceKindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEEC2EOS3_ _ZN4llvm8OptionalINSt3__14pairIPN5swift20GenericTypeParamTypeENS3_15RequirementKindEEEEC2EOS7_ Line | Count | Source | 281 | 288 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11constraints19TypeVariableBindingEEC2EOS3_ Line | Count | Source | 281 | 84 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift26MagicIdentifierLiteralExpr4KindEEC2EOS3_ _ZN4llvm8OptionalI35AbstractFunctionDeclLookupErrorKindEC2EOS1_ Line | Count | Source | 281 | 2 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift19ExportabilityReasonEEC2EOS2_ Line | Count | Source | 281 | 188 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20UnavailabilityReasonEEC2EOS2_ Unexecuted instantiation: TypeCheckAvailability.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119ReplacementDeclKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEC2EOS8_ _ZN4llvm8OptionalIN5swift12VarRefUseEnvEEC2EOS2_ Line | Count | Source | 281 | 41 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PartialApplyThunkInfoEEC2EOS2_ _ZN4llvm8OptionalINSt3__14pairIN5swift15ConcreteDeclRefENS3_9SourceLocEEEEC2EOS6_ Line | Count | Source | 281 | 54 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
TypeCheckConcurrency.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_126MemberIsolationPropagationEEC2EOS2_ Line | Count | Source | 281 | 579 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift22DispatchQueueOperationEEC2EOS2_ Line | Count | Source | 281 | 30 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ExprKindEEC2EOS2_ _ZN4llvm8OptionalIN5swift21ContextualTypePurposeEEC2EOS2_ Line | Count | Source | 281 | 112 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22AutomaticEnumValueKindEEC2EOS2_ _ZN4llvm8OptionalIN5swift10ObjCReasonEEC2EOS2_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedINS1_18StaticSpellingKindEEEEC2EOS4_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_17ContextEEC2EOS2_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExternalMacroDefinitionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SourceRangeEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23SyntacticTypoCorrectionEEC2EOS2_ _ZN4llvm8OptionalIN5swift16RequirementMatchEEC2EOS2_ Line | Count | Source | 281 | 426 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift11AccessScopeEEC2EOS2_ Line | Count | Source | 281 | 605 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ActorIsolationEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEEC2EOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SendableCheckEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11RequirementEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8DeclNameEEC2EOS2_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AbstractTypeWitnessEEC2EOS2_ _ZN4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEEC2EOSB_ Line | Count | Source | 281 | 174 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25RegexCaptureStructureCodeEEC2EOS2_ Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperMutabilityEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEC2EOS2_ TypeCheckSwitchStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEC2EOS3_ Line | Count | Source | 281 | 91 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEEC2EOS2_ Line | Count | Source | 281 | 520 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4UUIDEEC2EOS2_ _ZN4llvm8OptionalIN5swift19TypeResolutionStageEEC2EOS2_ Line | Count | Source | 281 | 34 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SanitizerKindEEC2EOS2_ _ZN4llvm8OptionalIPKN5clang4DeclEEC2EOS4_ Line | Count | Source | 281 | 54 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5clang6ModuleEEC2EOS3_ Line | Count | Source | 281 | 24 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5clang17DirectoryEntryRefEEC2EOS2_ Line | Count | Source | 281 | 331 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang8QualTypeEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallStringILj128EEEEC2EOS2_ _ZN4llvm8OptionalIN5swift19CtorInitializerKindEEC2EOS2_ Line | Count | Source | 281 | 331 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12PlatformKindEEC2EOS2_ Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEEC2EOS2_ _ZN4llvm8OptionalIPN5swift16GenericParamListEEC2EOS3_ Line | Count | Source | 281 | 26.9k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_6APSIntEN5swift4TypeEEEEC2EOS6_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4KindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEEC2EOS3_ Unexecuted instantiation: ImportName.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEEC2EOS2_ Unexecuted instantiation: ImportType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112ImportResultEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang8EnumDeclEEC2EOS4_ _ZN4llvm8OptionalIN5swift13ClangImporter14Implementation25ImportParameterTypeResultEEC2EOS4_ Line | Count | Source | 281 | 18 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEC2EOS7_ Line | Count | Source | 281 | 511 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15NonSendableKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEEC2EOS2_ _ZN4llvm8OptionalIN5swift13AssociativityEEC2EOS2_ Line | Count | Source | 281 | 84 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift27MacroIntroducedDeclNameKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21PlatformConditionKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15TuplePatternEltEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalImEC2EOm Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift5TokenENS1_9allocatorIS4_EEEEEC2EOS7_ _ZN4llvm8OptionalINS_8ArrayRefIN5swift7ASTNodeEEEEC2EOS4_ Line | Count | Source | 281 | 114 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift23SourceFileParsingResultEEC2EOS2_ Line | Count | Source | 281 | 114 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift12StableHasherEEC2EOS2_ Line | Count | Source | 281 | 135 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19PatternBindingStateEEC2EOS2_ _ZN4llvm8OptionalIN5swift7VarDecl10IntroducerEEC2EOS3_ Line | Count | Source | 281 | 527 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15AccessNotesFileEEC2EOS2_ _ZN4llvm8OptionalIN5swift11AccessLevelEEC2EOS2_ Line | Count | Source | 281 | 78.7k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEEC2EOS5_ Line | Count | Source | 281 | 19 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift15EnumElementDeclEEC2EOS3_ Line | Count | Source | 281 | 1.45k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINS_13TinyPtrVectorIPN5swift9ValueDeclEEEEC2EOS5_ Line | Count | Source | 281 | 18.3k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21KnownFoundationEntityEEC2EOS2_ _ZN4llvm8OptionalIN5swift17KnownProtocolKindEEC2EOS2_ Line | Count | Source | 281 | 20.2k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift4TypeEEC2EOS2_ Line | Count | Source | 281 | 192k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPKN5swift13SemanticsAttrEEC2EOS4_ Line | Count | Source | 281 | 30 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift13SILResultInfoEEC2EOS2_ Line | Count | Source | 281 | 966 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13ClangTypeKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15TypeLookupErrorEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle23ImplParameterConventionEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle30ImplParameterDifferentiabilityEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle20ImplResultConventionEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle27ImplResultDifferentiabilityEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIcEC2EOc _ZN4llvm8OptionalIN5swift6Mangle10ASTMangler14SpecialContextEEC2EOS4_ Line | Count | Source | 281 | 4 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift7VarDeclEEC2EOS3_ Line | Count | Source | 281 | 1.27k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPKN5swift14SpecializeAttrEEC2EOS4_ Line | Count | Source | 281 | 48 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift23OriginallyDefinedInAttrEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift23SynthesizedProtocolAttrEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9ErrorExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14NilLiteralExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift18BooleanLiteralExprEEC2EOS3_ Line | Count | Source | 281 | 4 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift18IntegerLiteralExprEEC2EOS3_ Line | Count | Source | 281 | 53 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16FloatLiteralExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift17StringLiteralExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift26MagicIdentifierLiteralExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift29InterpolatedStringLiteralExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16RegexLiteralExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift17ObjectLiteralExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift21DiscardAssignmentExprEEC2EOS3_ Line | Count | Source | 281 | 6 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift11DeclRefExprEEC2EOS3_ Line | Count | Source | 281 | 266 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12SuperRefExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift8TypeExprEEC2EOS3_ Line | Count | Source | 281 | 58 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift27OtherConstructorDeclRefExprEEC2EOS3_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift24DotSyntaxBaseIgnoredExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift21OverloadedDeclRefExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift21UnresolvedDeclRefExprEEC2EOS3_ Line | Count | Source | 281 | 188 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift13MemberRefExprEEC2EOS3_ Line | Count | Source | 281 | 109 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift13SubscriptExprEEC2EOS3_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift20DynamicMemberRefExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift20DynamicSubscriptExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift24UnresolvedSpecializeExprEEC2EOS3_ Line | Count | Source | 281 | 8 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift20UnresolvedMemberExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift17UnresolvedDotExprEEC2EOS3_ Line | Count | Source | 281 | 13 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift12SequenceExprEEC2EOS3_ Line | Count | Source | 281 | 38 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift9ParenExprEEC2EOS3_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11DotSelfExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9AwaitExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10BorrowExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift31UnresolvedMemberChainResultExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8CopyExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11ConsumeExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift7TryExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12ForceTryExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15OptionalTryExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift9TupleExprEEC2EOS3_ Line | Count | Source | 281 | 2 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9ArrayExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14DictionaryExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift22KeyPathApplicationExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16TupleElementExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15CaptureListExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11ClosureExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15AutoClosureExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift9InOutExprEEC2EOS3_ Line | Count | Source | 281 | 48 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19VarargExpansionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift17PackExpansionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15PackElementExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19MaterializePackExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15DynamicTypeExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift27RebindSelfInConstructorExprEEC2EOS3_ Line | Count | Source | 281 | 1 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15OpaqueValueExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift35PropertyWrapperValuePlaceholderExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift26AppliedPropertyWrapperExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift19DefaultArgumentExprEEC2EOS3_ Line | Count | Source | 281 | 21 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16BindOptionalExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift22OptionalEvaluationExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14ForceValueExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19OpenExistentialExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift28MakeTemporarilyEscapableExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift8CallExprEEC2EOS3_ Line | Count | Source | 281 | 96 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15PrefixUnaryExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16PostfixUnaryExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift10BinaryExprEEC2EOS3_ Line | Count | Source | 281 | 17 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift17DotSyntaxCallExprEEC2EOS3_ Line | Count | Source | 281 | 33 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift22ConstructorRefCallExprEEC2EOS3_ Line | Count | Source | 281 | 23 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift8LoadExprEEC2EOS3_ Line | Count | Source | 281 | 3 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift21ABISafeConversionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift20DestructureTupleExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift28UnresolvedTypeConversionExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift22FunctionConversionExprEEC2EOS3_ Line | Count | Source | 281 | 3 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift31CovariantFunctionConversionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift29CovariantReturnConversionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift22MetatypeConversionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift30CollectionUpcastConversionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11ErasureExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift22AnyHashableErasureExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16BridgeToObjCExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18BridgeFromObjCExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift29ConditionalBridgeFromObjCExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift17DerivedToBaseExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift20ArchetypeToSuperExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift22InjectIntoOptionalExprEEC2EOS3_ Line | Count | Source | 281 | 5 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift25ClassMetatypeToObjectExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift31ExistentialMetatypeToObjectExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift28ProtocolMetatypeToObjectExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18InOutToPointerExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18ArrayToPointerExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19StringToPointerExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift20PointerToPointerExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift27ForeignObjectConversionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift23UnevaluatedInstanceExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift22UnderlyingToOpaqueExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift26DifferentiableFunctionExprEEC2EOS3_ Line | Count | Source | 281 | 3 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18LinearFunctionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift41DifferentiableFunctionExtractOriginalExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift33LinearFunctionExtractOriginalExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift34LinearToDifferentiableFunctionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift21ForcedCheckedCastExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift26ConditionalCheckedCastExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift6IsExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10CoerceExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9ArrowExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11TernaryExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14EnumIsCaseExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift10AssignExprEEC2EOS3_ Line | Count | Source | 281 | 40 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18CodeCompletionExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift21UnresolvedPatternExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19LazyInitializerExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift21EditorPlaceholderExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16ObjCSelectorExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11KeyPathExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19SingleValueStmtExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14KeyPathDotExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10OneWayExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift7TapExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12TypeJoinExprEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18MacroExpansionExprEEC2EOS3_ _ZN4llvm8OptionalIPN5swift10ReturnStmtEEC2EOS3_ Line | Count | Source | 281 | 137 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8ThenStmtEEC2EOS3_ _ZN4llvm8OptionalIPN5swift9YieldStmtEEC2EOS3_ Line | Count | Source | 281 | 25 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9DeferStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift6IfStmtEEC2EOS3_ _ZN4llvm8OptionalIPN5swift9GuardStmtEEC2EOS3_ Line | Count | Source | 281 | 2 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9WhileStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift6DoStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11DoCatchStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15RepeatWhileStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11ForEachStmtEEC2EOS3_ _ZN4llvm8OptionalIPN5swift10SwitchStmtEEC2EOS3_ Line | Count | Source | 281 | 4 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9BreakStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12ContinueStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15FallthroughStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8FailStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9ThrowStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11DiscardStmtEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15PoundAssertStmtEEC2EOS3_ _ZN4llvm8OptionalIPN5swift12ParenPatternEEC2EOS3_ Line | Count | Source | 281 | 10 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift12TuplePatternEEC2EOS3_ Line | Count | Source | 281 | 8 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift10AnyPatternEEC2EOS3_ Line | Count | Source | 281 | 4 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift12TypedPatternEEC2EOS3_ Line | Count | Source | 281 | 855 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift14BindingPatternEEC2EOS3_ Line | Count | Source | 281 | 8 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9IsPatternEEC2EOS3_ _ZN4llvm8OptionalIPN5swift18EnumElementPatternEEC2EOS3_ Line | Count | Source | 281 | 19 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19OptionalSomePatternEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11BoolPatternEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11ExprPatternEEC2EOS3_ _ZN4llvm8OptionalIPN5swift8EnumDeclEEC2EOS3_ Line | Count | Source | 281 | 23 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift10StructDeclEEC2EOS3_ Line | Count | Source | 281 | 138 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift12ProtocolDeclEEC2EOS3_ Line | Count | Source | 281 | 39 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16BuiltinTupleDeclEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14OpaqueTypeDeclEEC2EOS3_ _ZN4llvm8OptionalIPN5swift13TypeAliasDeclEEC2EOS3_ Line | Count | Source | 281 | 486 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift20GenericTypeParamDeclEEC2EOS3_ Line | Count | Source | 281 | 1.65k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift18AssociatedTypeDeclEEC2EOS3_ Line | Count | Source | 281 | 233 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10ModuleDeclEEC2EOS3_ _ZN4llvm8OptionalIPN5swift9ParamDeclEEC2EOS3_ Line | Count | Source | 281 | 10.9k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift13SubscriptDeclEEC2EOS3_ Line | Count | Source | 281 | 27 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift15ConstructorDeclEEC2EOS3_ Line | Count | Source | 281 | 924 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift8FuncDeclEEC2EOS3_ Line | Count | Source | 281 | 3.13k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9MacroDeclEEC2EOS3_ _ZN4llvm8OptionalIPN5swift13ExtensionDeclEEC2EOS3_ Line | Count | Source | 281 | 12 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift16TopLevelCodeDeclEEC2EOS3_ _ZN4llvm8OptionalIPN5swift10ImportDeclEEC2EOS3_ Line | Count | Source | 281 | 79 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12IfConfigDeclEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19PoundDiagnosticDeclEEC2EOS3_ _ZN4llvm8OptionalIPN5swift19PrecedenceGroupDeclEEC2EOS3_ Line | Count | Source | 281 | 74 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11MissingDeclEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift17MissingMemberDeclEEC2EOS3_ _ZN4llvm8OptionalIPN5swift18PatternBindingDeclEEC2EOS3_ Line | Count | Source | 281 | 880 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift17InfixOperatorDeclEEC2EOS3_ Line | Count | Source | 281 | 142 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift18PrefixOperatorDeclEEC2EOS3_ Line | Count | Source | 281 | 10 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19PostfixOperatorDeclEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18MacroExpansionDeclEEC2EOS3_ _ZN4llvm8OptionalIPKN5swift13DeclAttributeEEC2EOS4_ Line | Count | Source | 281 | 23.8k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjjEEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift8TypeReprEjEEEC2EOS6_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23OriginallyDefinedInAttr13ActiveVersionEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift15NonSendableAttrEEC2EOS4_ _ZN4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEC2EOS3_ Line | Count | Source | 281 | 24 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEC2EOS3_ _ZN4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEC2EOS2_ Line | Count | Source | 281 | 41 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEC2EOSA_ _ZN4llvm8OptionalIN5swift19AvailabilityContextEEC2EOS2_ Line | Count | Source | 281 | 334 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10ImportKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15KeyPathTypeKindEEC2EOS2_ _ZN4llvm8OptionalIN5swift26KnownDerivableProtocolKindEEC2EOS2_ Line | Count | Source | 281 | 222 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__14pairIPN5swift8CaseStmtEPNS3_7PatternEEEEC2EOS8_ Line | Count | Source | 281 | 20 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14ParamSpecifierEEC2EOS2_ Line | Count | Source | 281 | 15.5k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift38PropertyWrapperSynthesizedPropertyKindEEC2EOS2_ Line | Count | Source | 281 | 334 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift11InitializerEEC2EOS3_ _ZN4llvm8OptionalIN5swift18BodyAndFingerprintEEC2EOS2_ Line | Count | Source | 281 | 6.33k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16BuiltinMacroKindEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift13MacroRoleAttrEEC2EOS4_ _ZN4llvm8OptionalIPN5swift4DeclEEC2EOS3_ Line | Count | Source | 281 | 377 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEEC2EOS4_ _ZN4llvm8OptionalIN5swift14DiagnosticInfoEEC2EOS2_ Line | Count | Source | 281 | 45 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift6markup10ParamFieldEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10RawCommentEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24UnexpectedClangTypeErrorEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25fine_grained_dependencies18SourceFileDepGraphEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25fine_grained_dependencies8NodeKindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25fine_grained_dependencies10DeclAspectEEC2EOS3_ _ZN4llvm8OptionalIN5swift12ObjCSelectorEEC2EOS2_ Line | Count | Source | 281 | 14 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9MacroRoleEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ExternalSourceLocs7RawLocsEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift10CustomAttrEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift20SPIAccessControlAttrEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift20ModuleDependencyInfoEEC2EOS4_ _ZN4llvm8OptionalIPN5swift8CaseStmtEEC2EOS3_ Line | Count | Source | 281 | 263 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift9ClassDeclEEC2EOS3_ Line | Count | Source | 281 | 12.7k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift15NominalTypeDeclEEC2EOS3_ Line | Count | Source | 281 | 12 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift14DestructorDeclEEC2EOS3_ Line | Count | Source | 281 | 257 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEC2EOS4_ Line | Count | Source | 281 | 576 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9rewriting10DebugFlagsEEC2EOS3_ _ZN4llvm8OptionalIN5swift9rewriting6SymbolEEC2EOS3_ Line | Count | Source | 281 | 51.0k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15cxx_translation19RepresentationErrorEEC2EOS3_ _ZN4llvm8OptionalIN5swift12TangentSpaceEEC2EOS2_ Line | Count | Source | 281 | 38 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift14SelfAccessKindEEC2EOS2_ Line | Count | Source | 281 | 10.7k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift19OpaqueReadOwnershipEEC2EOS2_ Line | Count | Source | 281 | 570 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIPN5swift12AccessorDeclEEC2EOS3_ Line | Count | Source | 281 | 2.43k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalINSt3__15tupleIJEEEEC2EOS3_ Line | Count | Source | 281 | 9 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift19PatternBindingEntryEEC2EOS4_ _ZN4llvm8OptionalIPN5swift12NamedPatternEEC2EOS3_ Line | Count | Source | 281 | 916 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ExprPatternMatchResultEEC2EOS2_ _ZN4llvm8OptionalIPN5swift11IndexSubsetEEC2EOS3_ Line | Count | Source | 281 | 165 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7CanTypeEEC2EOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13ArchetypeTypeEPNS3_23OpaqueTypeArchetypeTypeEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalIDnEC2EODn Unexecuted instantiation: _ZN4llvm8OptionalIdEC2EOd Unexecuted instantiation: _ZN4llvm8OptionalIxEC2EOx Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21EditorPlaceholderDataEEC2EOS2_ _ZN4llvm8OptionalIN5swift11FingerprintEEC2EOS2_ Line | Count | Source | 281 | 132 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7FeatureEEC2EOS2_ _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2EOS7_ Line | Count | Source | 281 | 209 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIjEC2EOj Line | Count | Source | 281 | 169k | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEEC2EOS4_ _ZN4llvm8OptionalINSt3__16vectorIiNS1_9allocatorIiEEEEEC2EOS5_ Line | Count | Source | 281 | 6 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
_ZN4llvm8OptionalIN5swift7version7VersionEEC2EOS3_ Line | Count | Source | 281 | 13 | constexpr Optional(T &&y) : Storage(std::in_place, std::move(y)) {} |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle4Node4KindEEC2EOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle16ValueWitnessKindEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle10DirectnessEEC2EOS3_ |
282 | 20.8k | constexpr Optional(Optional &&O) = default; Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEC2EOS9_ DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEEC2EOS4_ Line | Count | Source | 282 | 72 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEC2EOSB_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift25EnumElementParameterValueENS1_9allocatorIS4_EEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift15CustomAttrValueELj2EEEEC2EOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEEC2EOS8_ _ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEEC2EOS4_ Line | Count | Source | 282 | 341 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINS_5APIntEEC2EOS2_ Line | Count | Source | 282 | 247 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEEC2EOSA_ Line | Count | Source | 282 | 4 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEC2EOS5_ Line | Count | Source | 282 | 29 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEEC2EOS6_ Line | Count | Source | 282 | 229 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6LValueEEC2EOS4_ _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEC2EOS7_ Line | Count | Source | 282 | 494 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEC2EOS7_ Line | Count | Source | 282 | 523 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEC2EOS8_ Line | Count | Source | 282 | 254 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEC2EOS8_ Line | Count | Source | 282 | 230 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEEC2EOSC_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSK_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEC2EOS8_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEEC2EOS9_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSL_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEC2EOSK_ _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEC2EOSJ_ Line | Count | Source | 282 | 176 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSI_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEC2EOSA_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEC2EOSG_ _ZN4llvm8OptionalIN5swift16SILDebugVariableEEC2EOS3_ Line | Count | Source | 282 | 482 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11semanticarc7Context21ConsumingOperandStateEEC2EOS5_ _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEC2EOSN_ Line | Count | Source | 282 | 1.06k | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEEC2EOS8_ _ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEC2EOS7_ Line | Count | Source | 282 | 121 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEC2EOSC_ Line | Count | Source | 282 | 46 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12siloptimizer7CleanupIvJPNS1_14SILInstructionEEEEEC2EOS7_ _ZN4llvm8OptionalIN5swift25FindLocalApplySitesResultEEC2EOS3_ Line | Count | Source | 282 | 1.08k | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEEC2EOSB_ Line | Count | Source | 282 | 3 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEC2EOSE_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProjectionPathEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__15tupleIJjjEEEEC2EOS4_ _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEC2EOSL_ Line | Count | Source | 282 | 28 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEEC2EOS7_ Line | Count | Source | 282 | 484 | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEEC2EOS4_ Line | Count | Source | 282 | 2.08k | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12LookupResultEEC2EOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEEC2EOS8_ _ZN4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEEC2EOSC_ Line | Count | Source | 282 | 174 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEC2EOS3_ _ZN4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEC2EOSB_ Line | Count | Source | 282 | 1.12k | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEC2EOS9_ Line | Count | Source | 282 | 10.6k | constexpr Optional(Optional &&O) = default; |
_ZN4llvm8OptionalIN5swift11FingerprintEEC2EOS3_ Line | Count | Source | 282 | 966 | constexpr Optional(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEC2EOS9_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEC2EOS9_ |
283 | | |
284 | | template <typename... ArgTypes> |
285 | | constexpr Optional(std::in_place_t, ArgTypes &&...Args) |
286 | 0 | : Storage(std::in_place, std::forward<ArgTypes>(Args)...) {} |
287 | | |
288 | 59.7k | Optional &operator=(T &&y) { |
289 | 59.7k | Storage = std::move(y); |
290 | 59.7k | return *this; |
291 | 59.7k | } Unexecuted instantiation: _ZN4llvm8OptionalIPKcEaSEOS2_ _ZN4llvm8OptionalIbEaSEOb Line | Count | Source | 288 | 12.6k | Optional &operator=(T &&y) { | 289 | 12.6k | Storage = std::move(y); | 290 | 12.6k | return *this; | 291 | 12.6k | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_12DenormalMode16DenormalModeKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeAttributes19OpaqueReturnTypeRefEEaSEOS3_ _ZN4llvm8OptionalIN5swift10ASTExtInfoEEaSEOS2_ Line | Count | Source | 288 | 24.9k | Optional &operator=(T &&y) { | 289 | 24.9k | Storage = std::move(y); | 290 | 24.9k | return *this; | 291 | 24.9k | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ApplyIsolationCrossingEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19PatternBindingState4KindEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21CopyPropagationOptionEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11FingerprintEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_17TargetLibraryInfoEEaSEOS1_ Unexecuted instantiation: _ZN4llvm8OptionalImEaSEOm Unexecuted instantiation: _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSEOS7_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12Preprocessor19MacroAnnotationInfoEEaSEOS3_ _ZN4llvm8OptionalINS_9StringRefEEaSEOS1_ Line | Count | Source | 288 | 1.50k | Optional &operator=(T &&y) { | 289 | 1.50k | Storage = std::move(y); | 290 | 1.50k | return *this; | 291 | 1.50k | } |
_ZN4llvm8OptionalIjEaSEOj Line | Count | Source | 288 | 8.03k | Optional &operator=(T &&y) { | 289 | 8.03k | Storage = std::move(y); | 290 | 8.03k | return *this; | 291 | 8.03k | } |
Unexecuted instantiation: swift_cache_tool_main.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_120SwiftCacheToolActionEEaSEOS2_ _ZN4llvm8OptionalIN5swift11AccessLevelEEaSEOS2_ Line | Count | Source | 288 | 39 | Optional &operator=(T &&y) { | 289 | 39 | Storage = std::move(y); | 290 | 39 | return *this; | 291 | 39 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_3orc23JITTargetMachineBuilderEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES4_EEEEaSEOS6_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS_3cas9ObjectRefEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift27UnavailableDeclOptimizationEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift17StrictConcurrencyEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18DiagnosticBehaviorEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift28AccessNoteDiagnosticBehaviorEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16ConcurrencyModelEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IbEEEaSEOS1_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21DestroyHoistingOptionEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21CopyPropagationOptionEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift16JITDebugArtifactEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift16IRGenLLVMLTOKindEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_12VersionTupleEEaSEOS1_ Unexecuted instantiation: _ZN4llvm8OptionalINS_12function_refIFvvEEEEaSEOS3_ _ZN4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEEaSEOS2_ Line | Count | Source | 288 | 72 | Optional &operator=(T &&y) { | 289 | 72 | Storage = std::move(y); | 290 | 72 | return *this; | 291 | 72 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13ModuleBuffersEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift3ide3api7KeyKindEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIhEaSEOh _ZN4llvm8OptionalIN5swift12AccessorKindEEaSEOS2_ Line | Count | Source | 288 | 1 | Optional &operator=(T &&y) { | 289 | 1 | Storage = std::move(y); | 290 | 1 | return *this; | 291 | 1 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift8DeclKindEEEEaSEOS3_ _ZN4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEEaSEOS3_ Line | Count | Source | 288 | 4 | Optional &operator=(T &&y) { | 289 | 4 | Storage = std::move(y); | 290 | 4 | return *this; | 291 | 4 | } |
_ZN4llvm8OptionalIyEaSEOy Line | Count | Source | 288 | 129 | Optional &operator=(T &&y) { | 289 | 129 | Storage = std::move(y); | 290 | 129 | return *this; | 291 | 129 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_13AtomicRMWInst5BinOpEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetails12DirectResultEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPNS_5ValueEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen7AddressEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEEaSEOS4_ _ZN4llvm8OptionalIN5swift5irgen10LinkEntityEEaSEOS3_ Line | Count | Source | 288 | 22 | Optional &operator=(T &&y) { | 289 | 22 | Storage = std::move(y); | 290 | 22 | return *this; | 291 | 22 | } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoEEaSEOS4_ Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_119LinearFuncFieldInfoEEaSEOS4_ _ZN4llvm8OptionalIN5swift5irgen9AtomicityEEaSEOS3_ Line | Count | Source | 288 | 8 | Optional &operator=(T &&y) { | 289 | 8 | Storage = std::move(y); | 290 | 8 | return *this; | 291 | 8 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19ParameterConventionEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIPNS_4TypeEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen12StackAddressEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen19TypeEntityReferenceEEaSEOS3_ _ZN4llvm8OptionalIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionEEaSEOS4_ Line | Count | Source | 288 | 10 | Optional &operator=(T &&y) { | 289 | 10 | Storage = std::move(y); | 290 | 10 | return *this; | 291 | 10 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPNS_9InlineAsmEEaSEOS2_ Unexecuted instantiation: GenStruct.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_114ClangFieldInfoEEaSEOS4_ Unexecuted instantiation: GenStruct.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_115StructFieldInfoEEaSEOS4_ Unexecuted instantiation: GenTuple.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_114TupleFieldInfoEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS_5APIntEEaSEOS1_ Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEEaSEOS2_ _ZN4llvm8OptionalINS_3vfs10OutputFileEEaSEOS2_ Line | Count | Source | 288 | 2 | Optional &operator=(T &&y) { | 289 | 2 | Storage = std::move(y); | 290 | 2 | return *this; | 291 | 2 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_9CodeModel5ModelEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_3cas5CASIDEEaSEOS2_ Unexecuted instantiation: IRGenSIL.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112LoweredValueEEaSEOS2_ _ZN4llvm8OptionalIN5swift5irgen13OperationCostEEaSEOS3_ Line | Count | Source | 288 | 2 | Optional &operator=(T &&y) { | 289 | 2 | Storage = std::move(y); | 290 | 2 | return *this; | 291 | 2 | } |
_ZN4llvm8OptionalIxEaSEOx Line | Count | Source | 288 | 7 | Optional &operator=(T &&y) { | 289 | 7 | Storage = std::move(y); | 290 | 7 | return *this; | 291 | 7 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IhEEEaSEOS1_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__13setIaNS1_4lessIaEENS1_9allocatorIaEEEEEaSEOS7_ _ZN4llvm8OptionalINS_10DataLayoutEEaSEOS1_ Line | Count | Source | 288 | 3 | Optional &operator=(T &&y) { | 289 | 3 | Storage = std::move(y); | 290 | 3 | return *this; | 291 | 3 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift5irgen4SizeEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift5irgen9AlignmentEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IjEEEaSEOS1_ Unexecuted instantiation: _ZN4llvm8OptionalIPNS_8ConstantEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen4SizeEEaSEOS3_ _ZN4llvm8OptionalIN5swift7RT_KindEEaSEOS2_ Line | Count | Source | 288 | 82 | Optional &operator=(T &&y) { | 289 | 82 | Storage = std::move(y); | 290 | 82 | return *this; | 291 | 82 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8FuncDeclEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift7VarDeclEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19ProtocolConformanceEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEEaSEOS5_ SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_18CallSiteEEaSEOS2_ Line | Count | Source | 288 | 143 | Optional &operator=(T &&y) { | 289 | 143 | Storage = std::move(y); | 290 | 143 | return *this; | 291 | 143 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10SILDeclRefEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ActorIsolationEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4TypeEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEEaSEOS3_ _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEaSEOS3_ Line | Count | Source | 288 | 185 | Optional &operator=(T &&y) { | 289 | 185 | Storage = std::move(y); | 290 | 185 | return *this; | 291 | 185 | } |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEEaSEOS2_ Line | Count | Source | 288 | 18 | Optional &operator=(T &&y) { | 289 | 18 | Storage = std::move(y); | 290 | 18 | return *this; | 291 | 18 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12ProtocolDeclEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14CanTypeWrapperINS1_15AnyFunctionTypeEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SubstitutionMapEEaSEOS2_ _ZN4llvm8OptionalIN5swift13SILAccessKindEEaSEOS2_ Line | Count | Source | 288 | 9 | Optional &operator=(T &&y) { | 289 | 9 | Storage = std::move(y); | 290 | 9 | return *this; | 291 | 9 | } |
_ZN4llvm8OptionalIN5swift13ArrayCallKindEEaSEOS2_ Line | Count | Source | 288 | 70 | Optional &operator=(T &&y) { | 289 | 70 | Storage = std::move(y); | 290 | 70 | return *this; | 291 | 70 | } |
_ZN4llvm8OptionalIN5swift14AutoDiffConfigEEaSEOS2_ Line | Count | Source | 288 | 3 | Optional &operator=(T &&y) { | 289 | 3 | Storage = std::move(y); | 290 | 3 | return *this; | 291 | 3 | } |
_ZN4llvm8OptionalIN5swift16SILParameterInfoEEaSEOS2_ Line | Count | Source | 288 | 582 | Optional &operator=(T &&y) { | 289 | 582 | Storage = std::move(y); | 290 | 582 | return *this; | 291 | 582 | } |
DefiniteInitialization.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16DIKindEEaSEOS2_ Line | Count | Source | 288 | 16 | Optional &operator=(T &&y) { | 289 | 16 | Storage = std::move(y); | 290 | 16 | return *this; | 291 | 16 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEEaSEOS2_ DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEEaSEOSB_ Line | Count | Source | 288 | 102 | Optional &operator=(T &&y) { | 289 | 102 | Storage = std::move(y); | 290 | 102 | return *this; | 291 | 102 | } |
DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEEaSEOS2_ Line | Count | Source | 288 | 21 | Optional &operator=(T &&y) { | 289 | 21 | Storage = std::move(y); | 290 | 21 | return *this; | 291 | 21 | } |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEEaSEOS9_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSJ_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEEEaSEOS6_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEaSEOS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSK_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEaSEOSJ_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEaSEOSI_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSH_ Unexecuted instantiation: YieldOnceCheck.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8SILValueEEaSEOS2_ _ZN4llvm8OptionalIN5swift7SILTypeEEaSEOS2_ Line | Count | Source | 288 | 82 | Optional &operator=(T &&y) { | 289 | 82 | Storage = std::move(y); | 290 | 82 | return *this; | 291 | 82 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8PassKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEaSEOSM_ _ZN4llvm8OptionalIN5swift21MarkUninitializedInst4KindEEaSEOS3_ Line | Count | Source | 288 | 5 | Optional &operator=(T &&y) { | 289 | 5 | Storage = std::move(y); | 290 | 5 | return *this; | 291 | 5 | } |
SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_120StorageStateTrackingINS1_10LiveValuesEEEEaSEOS4_ Line | Count | Source | 288 | 58 | Optional &operator=(T &&y) { | 289 | 58 | Storage = std::move(y); | 290 | 58 | return *this; | 291 | 58 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22LoadOwnershipQualifierEEaSEOS2_ _ZN4llvm8OptionalIN5swift13LoadOperationEEaSEOS2_ Line | Count | Source | 288 | 77 | Optional &operator=(T &&y) { | 289 | 77 | Storage = std::move(y); | 290 | 77 | return *this; | 291 | 77 | } |
Unexecuted instantiation: APIDigesterData.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115DiffItemKeyKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api15APIDiffItemKindEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift3ide3api11SDKNodeKindEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api14NodeAnnotationEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api13SpecialCaseIdEEaSEOS4_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEEaSEOS3_ Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide17ResolvedRangeInfoEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10AccessKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedIPNS1_12ArgumentListEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift6driver20IncrementalJobAction9InputInfo6StatusEEEEaSEOS6_ _ZN4llvm8OptionalINS0_IN5swift6driver6Driver10DriverKindEEEEaSEOS5_ Line | Count | Source | 288 | 5 | Optional &operator=(T &&y) { | 289 | 5 | Storage = std::move(y); | 290 | 5 | return *this; | 291 | 5 | } |
_ZN4llvm8OptionalINS_6TripleEEaSEOS1_ Line | Count | Source | 288 | 454 | Optional &operator=(T &&y) { | 289 | 454 | Storage = std::move(y); | 290 | 454 | return *this; | 291 | 454 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift6driver10OutputInfo7LTOKindEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift6driver10OutputInfo11MSVCRuntimeEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16BuiltinMacroKindEEaSEOS2_ _ZN4llvm8OptionalIN5swift14ImportedModuleEEaSEOS2_ Line | Count | Source | 288 | 191 | Optional &operator=(T &&y) { | 289 | 191 | Storage = std::move(y); | 290 | 191 | return *this; | 291 | 191 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyInfoEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22SwiftDependencyTrackerEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExpandedMacroDefinitionEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEEaSEOS2_ _ZN4llvm8OptionalIN5swift7CanTypeEEaSEOS2_ Line | Count | Source | 288 | 6 | Optional &operator=(T &&y) { | 289 | 6 | Storage = std::move(y); | 290 | 6 | return *this; | 291 | 6 | } |
Unexecuted instantiation: SILFunctionType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEEaSEOS3_ _ZN4llvm8OptionalIN5swift16BuiltinValueKindEEaSEOS2_ Line | Count | Source | 288 | 90 | Optional &operator=(T &&y) { | 289 | 90 | Storage = std::move(y); | 290 | 90 | return *this; | 291 | 90 | } |
_ZN4llvm8OptionalIN5swift11SILLocationEEaSEOS2_ Line | Count | Source | 288 | 29 | Optional &operator=(T &&y) { | 289 | 29 | Storage = std::move(y); | 290 | 29 | return *this; | 291 | 29 | } |
Unexecuted instantiation: SILProfiler.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEaSEOS2_ _ZN4llvm8OptionalIN5swift13SILResultInfoEEaSEOS2_ Line | Count | Source | 288 | 14 | Optional &operator=(T &&y) { | 289 | 14 | Storage = std::move(y); | 290 | 14 | return *this; | 291 | 14 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift13OwnershipKind7innertyEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13CapturedValueEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEEaSEOSA_ Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZN4llvm8OptionalINS0_IZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEaSEOSG_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13AccessStorageEEaSEOS2_ Unexecuted instantiation: PrunedLiveness.cpp:_ZN4llvm8OptionalINS0_IZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEaSEOSG_ _ZN4llvm8OptionalINSt3__15tupleIJjjEEEEaSEOS3_ Line | Count | Source | 288 | 4 | Optional &operator=(T &&y) { | 289 | 4 | Storage = std::move(y); | 290 | 4 | return *this; | 291 | 4 | } |
_ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSK_ Line | Count | Source | 288 | 18 | Optional &operator=(T &&y) { | 289 | 18 | Storage = std::move(y); | 290 | 18 | return *this; | 291 | 18 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift12AccessorKindEEEEaSEOS3_ _ZN4llvm8OptionalINS0_IN5swift18SILInstructionKindEEEEaSEOS3_ Line | Count | Source | 288 | 27 | Optional &operator=(T &&y) { | 289 | 27 | Storage = std::move(y); | 290 | 27 | return *this; | 291 | 27 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift23OpenedExistentialAccessEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AssignByWrapperInst4ModeEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16AssignOrInitInst4ModeEEaSEOS3_ _ZN4llvm8OptionalINS0_IN5swift10SILLinkageEEEEaSEOS3_ Line | Count | Source | 288 | 4 | Optional &operator=(T &&y) { | 289 | 4 | Storage = std::move(y); | 290 | 4 | return *this; | 291 | 4 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10SILLinkageEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeAttributes10ConventionEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift34MarkUnresolvedReferenceBindingInst4KindEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ValueOwnershipKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift22LoadOwnershipQualifierEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift19CastConsumptionKindEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift23StoreOwnershipQualifierEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift24AssignOwnershipQualifierEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23StoreOwnershipQualifierEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift24AssignOwnershipQualifierEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20SILAccessEnforcementEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23KeyPathPatternComponentEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEEaSEOS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEaSEOS3_ Unexecuted instantiation: CSSyntacticElement.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_123SyntacticElementContextEEaSEOS2_ Unexecuted instantiation: CSGen.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationEEaSEOS3_ _ZN4llvm8OptionalIN5swift11constraints14ConstraintKindEEaSEOS3_ Line | Count | Source | 288 | 2.12k | Optional &operator=(T &&y) { | 289 | 2.12k | Storage = std::move(y); | 290 | 2.12k | return *this; | 291 | 2.12k | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SourceRangeEEaSEOS2_ _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintENS4_5ScoreEEEEaSEOS8_ Line | Count | Source | 288 | 29 | Optional &operator=(T &&y) { | 289 | 29 | Storage = std::move(y); | 290 | 29 | return *this; | 291 | 29 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ContextualTypePurposeEEaSEOS2_ _ZN4llvm8OptionalIN5swift12LookupResultEEaSEOS2_ Line | Count | Source | 288 | 53 | Optional &operator=(T &&y) { | 289 | 53 | Storage = std::move(y); | 290 | 53 | return *this; | 291 | 53 | } |
_ZN4llvm8OptionalIN5swift11RequirementEEaSEOS2_ Line | Count | Source | 288 | 2.10k | Optional &operator=(T &&y) { | 289 | 2.10k | Storage = std::move(y); | 290 | 2.10k | return *this; | 291 | 2.10k | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11DeclNameRefEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ArgumentEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19ExportabilityReasonEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7ASTNodeEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift22DispatchQueueOperationEEEEaSEOS3_ TypeCheckDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121ImplicitlyFinalReasonEEaSEOS2_ Line | Count | Source | 288 | 9 | Optional &operator=(T &&y) { | 289 | 9 | Storage = std::move(y); | 290 | 9 | return *this; | 291 | 9 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10ObjCReasonEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift11SourceRangeEEEEaSEOS5_ Unexecuted instantiation: TypeCheckProtocol.cpp:_ZN4llvm8OptionalIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS1_9ClassDeclEE16UnstableNameKindEaSEOS6_ _ZN4llvm8OptionalINSt3__14pairIN5swift11AccessScopeEbEEEaSEOS5_ Line | Count | Source | 288 | 30 | Optional &operator=(T &&y) { | 289 | 30 | Storage = std::move(y); | 290 | 30 | return *this; | 291 | 30 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TypeWitnessConflictEEaSEOS2_ _ZN4llvm8OptionalIN5swift14TypeResolutionEEaSEOS2_ Line | Count | Source | 288 | 103 | Optional &operator=(T &&y) { | 289 | 103 | Storage = std::move(y); | 290 | 103 | return *this; | 291 | 103 | } |
_ZN4llvm8OptionalINS0_IN5swift29SILFunctionTypeRepresentationEEEEaSEOS3_ Line | Count | Source | 288 | 23 | Optional &operator=(T &&y) { | 289 | 23 | Storage = std::move(y); | 290 | 23 | return *this; | 291 | 23 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift26FunctionTypeRepresentationEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift13SanitizerKindEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_24SanitizerCoverageOptions4TypeEEaSEOS2_ _ZN4llvm8OptionalINS_8ArrayRefIN5swift14ImportedModuleEEEEaSEOS4_ Line | Count | Source | 288 | 81 | Optional &operator=(T &&y) { | 289 | 81 | Storage = std::move(y); | 290 | 81 | return *this; | 291 | 81 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12CXXScopeSpecEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CtorInitializerKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift12PlatformKindEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5clang6ModuleEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConventionEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3tokEEaSEOS2_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm8OptionalIZN5swift6Parser33parseStorageRestrictionsAttributeENS1_9SourceLocES3_E10AccessKindEaSEOS4_ Unexecuted instantiation: ParseDecl.cpp:_ZN4llvm8OptionalIZN5swift6Parser33parseExtendedAvailabilitySpecListENS1_9SourceLocES3_NS_9StringRefEE3$_4EaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12PlatformKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14SpecializeAttr18SpecializationKindEEaSEOS3_ _ZN4llvm8OptionalIN5swift21DifferentiabilityKindEEaSEOS2_ Line | Count | Source | 288 | 85 | Optional &operator=(T &&y) { | 289 | 85 | Storage = std::move(y); | 290 | 85 | return *this; | 291 | 85 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift11AccessLevelEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift9MacroRoleEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9MacroRoleEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift27MacroIntroducedDeclNameKindEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8TypeReprEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8DeclKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift13AssociativityEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13AssociativityEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20AvailabilitySpecKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21PlatformConditionKindEEEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIN5swift5TokenEEEEaSEOS4_ _ZN4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEEaSEOS7_ Line | Count | Source | 288 | 17 | Optional &operator=(T &&y) { | 289 | 17 | Storage = std::move(y); | 290 | 17 | return *this; | 291 | 17 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9SourceLocEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12ObjCSelectorEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift21KnownFoundationEntityEEEEaSEOS3_ _ZN4llvm8OptionalIN5swift4UUIDEEaSEOS2_ Line | Count | Source | 288 | 12 | Optional &operator=(T &&y) { | 289 | 12 | Storage = std::move(y); | 290 | 12 | return *this; | 291 | 12 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25ForeignRepresentationInfoEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang23HeaderIncludeFormatKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle26ImplMetatypeRepresentationEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift8Demangle10ASTBuilder17ForeignModuleKindEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_I20LayoutConstraintKindEEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S8_EEEEEaSEOSE_ _ZN4llvm8OptionalIN5swift20TypeTransformContextEEaSEOS2_ Line | Count | Source | 288 | 3 | Optional &operator=(T &&y) { | 289 | 3 | Storage = std::move(y); | 290 | 3 | return *this; | 291 | 3 | } |
_ZN4llvm8OptionalIN5swift15CharSourceRangeEEaSEOS2_ Line | Count | Source | 288 | 508 | Optional &operator=(T &&y) { | 289 | 508 | Storage = std::move(y); | 290 | 508 | return *this; | 291 | 508 | } |
_ZN4llvm8OptionalIPN5swift4ExprEEaSEOS3_ Line | Count | Source | 288 | 1.04k | Optional &operator=(T &&y) { | 289 | 1.04k | Storage = std::move(y); | 290 | 1.04k | return *this; | 291 | 1.04k | } |
_ZN4llvm8OptionalIPN5swift4StmtEEaSEOS3_ Line | Count | Source | 288 | 419 | Optional &operator=(T &&y) { | 289 | 419 | Storage = std::move(y); | 290 | 419 | return *this; | 291 | 419 | } |
_ZN4llvm8OptionalIPN5swift7PatternEEaSEOS3_ Line | Count | Source | 288 | 1.79k | Optional &operator=(T &&y) { | 289 | 1.79k | Storage = std::move(y); | 290 | 1.79k | return *this; | 291 | 1.79k | } |
_ZN4llvm8OptionalIN5swift12TypeAttrKindEEaSEOS2_ Line | Count | Source | 288 | 126 | Optional &operator=(T &&y) { | 289 | 126 | Storage = std::move(y); | 290 | 126 | return *this; | 291 | 126 | } |
_ZN4llvm8OptionalIN5swift12DeclAttrKindEEaSEOS2_ Line | Count | Source | 288 | 105 | Optional &operator=(T &&y) { | 289 | 105 | Storage = std::move(y); | 290 | 105 | return *this; | 291 | 105 | } |
_ZN4llvm8OptionalINS0_IN5swift30AutoDiffDerivativeFunctionKind7innertyEEEEaSEOS4_ Line | Count | Source | 288 | 12 | Optional &operator=(T &&y) { | 289 | 12 | Storage = std::move(y); | 290 | 12 | return *this; | 291 | 12 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift36DifferentiabilityWitnessFunctionKind7innertyEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS_14AtomicOrderingEEaSEOS1_ ClangTypeConverter.cpp:_ZN4llvm8OptionalIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS1_16BoundGenericTypeEE10StructKindEaSEOS5_ Line | Count | Source | 288 | 8 | Optional &operator=(T &&y) { | 289 | 8 | Storage = std::move(y); | 290 | 8 | return *this; | 291 | 8 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEEEaSEOS6_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift10ModuleDeclENS3_10IdentifierEEEEaSEOS7_ _ZN4llvm8OptionalINS_8ArrayRefIN5swift16AttributedImportINS2_14ImportedModuleEEEEEEaSEOS6_ Line | Count | Source | 288 | 16 | Optional &operator=(T &&y) { | 289 | 16 | Storage = std::move(y); | 290 | 16 | return *this; | 291 | 16 | } |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEaSEOS4_ Line | Count | Source | 288 | 28 | Optional &operator=(T &&y) { | 289 | 28 | Storage = std::move(y); | 290 | 28 | return *this; | 291 | 28 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9rewriting6SymbolEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift9rewriting10DebugFlagsEEEEaSEOS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CanGenericSignatureEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22MetatypeRepresentationEEaSEOS2_ _ZN4llvm8OptionalIN5swift10file_types2IDEEaSEOS3_ Line | Count | Source | 288 | 104 | Optional &operator=(T &&y) { | 289 | 104 | Storage = std::move(y); | 290 | 104 | return *this; | 291 | 104 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIiEaSEOi Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift7FeatureEEEEaSEOS3_ _ZN4llvm8OptionalINS0_INS_9StringRefEEEEaSEOS2_ Line | Count | Source | 288 | 980 | Optional &operator=(T &&y) { | 289 | 980 | Storage = std::move(y); | 290 | 980 | return *this; | 291 | 980 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEEEaSEOS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16BlockListKeyKindEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15BlockListActionEEaSEOS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle4Node4KindEEaSEOS4_ _ZN4llvm8OptionalIcEaSEOc Line | Count | Source | 288 | 212 | Optional &operator=(T &&y) { | 289 | 212 | Storage = std::move(y); | 290 | 212 | return *this; | 291 | 212 | } |
|
292 | 4.74k | Optional &operator=(Optional &&O) = default; Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEaSEOSB_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEEaSEOS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEaSEOS4_ DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEEaSEOS4_ Line | Count | Source | 292 | 38 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalIN5swift7version7VersionEEaSEOS4_ Line | Count | Source | 292 | 1 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEEaSEOS4_ Line | Count | Source | 292 | 107 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINS_5APIntEEaSEOS2_ Line | Count | Source | 292 | 90 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEaSEOS7_ Line | Count | Source | 292 | 301 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEaSEOS7_ Line | Count | Source | 292 | 133 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEaSEOS8_ Line | Count | Source | 292 | 31 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEaSEOS8_ Line | Count | Source | 292 | 27 | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProjectionPathEEaSEOS3_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSK_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEaSEOS8_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEEaSEOS9_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSL_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEaSEOSK_ _ZN4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEaSEOSJ_ Line | Count | Source | 292 | 88 | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSI_ _ZN4llvm8OptionalIN5swift16SILDebugVariableEEaSEOS3_ Line | Count | Source | 292 | 1.05k | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11semanticarc7Context21ConsumingOperandStateEEaSEOS5_ _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEaSEOSN_ Line | Count | Source | 292 | 530 | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEEaSEOS8_ _ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEaSEOS7_ Line | Count | Source | 292 | 43 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEaSEOSC_ Line | Count | Source | 292 | 31 | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEaSEOSE_ _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEaSEOSL_ Line | Count | Source | 292 | 14 | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEaSEOS9_ _ZN4llvm8OptionalIN5swift16RequirementMatchEEaSEOS3_ Line | Count | Source | 292 | 982 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEaSEOS8_ Line | Count | Source | 292 | 490 | Optional &operator=(Optional &&O) = default; |
_ZN4llvm8OptionalIN5swift11FingerprintEEaSEOS3_ Line | Count | Source | 292 | 778 | Optional &operator=(Optional &&O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSEOS8_ |
293 | | |
294 | | /// Create a new object by constructing it in place with the given arguments. |
295 | 20.9k | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { |
296 | 20.9k | Storage.emplace(std::forward<ArgTypes>(Args)...); |
297 | 20.9k | } _ZN4llvm8OptionalINS_5AlignEE7emplaceIJRyEEEvDpOT_ Line | Count | Source | 295 | 450 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 450 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 450 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_6DIFile12ChecksumInfoIPNS_8MDStringEEEE7emplaceIJRNS1_12ChecksumKindES4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEE7emplaceIJRKNS1_12ChecksumKindES3_EEEvDpOT_ _ZN4llvm8OptionalIN5swift16FixedOperandListILj1EEEE7emplaceIJPNS1_8EnumInstERNS1_8SILValueEEEEvDpOT_ Line | Count | Source | 295 | 16 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 16 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 16 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_13BasicAAResultEE7emplaceIJS1_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_9AAResultsEE7emplaceIJS1_EEEvDpOT_ _ZN4llvm8OptionalIN5swift37BufferIndirectlyCausingDiagnosticRAIIEE7emplaceIJRNS1_10SourceFileEEEEvDpOT_ Line | Count | Source | 295 | 2 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 2 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 2 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28PrettyStackTraceFileContentsEE7emplaceIJRNS_12MemoryBufferEEEEvDpOT_ Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEE7emplaceIJRPKcS8_RNS_11SmallVectorINS_9StringRefELj1EEEEEEvDpOT_ _ZN4llvm8OptionalIjE7emplaceIJRKjEEEvDpOT_ Line | Count | Source | 295 | 8 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 8 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 8 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16DiagnosticEngineEE7emplaceIJRNS1_13SourceManagerEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen22NativeConventionSchemaEE7emplaceIJRNS2_11IRGenModuleEPKNS2_8TypeInfoEbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeEE7emplaceIJRS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen19ConstantInitBuilderEE7emplaceIJRNS2_11IRGenModuleEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEE7emplaceIJS3_EEEvDpOT_ GenMeta.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEE7emplaceIJRN5swift5irgen11IRGenModuleERNS6_21ConstantStructBuilderEEEEvDpOT_ Line | Count | Source | 295 | 1 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 1 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 1 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: GenMeta.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEE7emplaceIJS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14FulfillmentMapEE7emplaceIJEEEvDpOT_ _ZN4llvm8OptionalIN5swift18DiverseValueBufferINS1_8Lowering7CleanupEEEE7emplaceIJRS4_EEEvDpOT_ Line | Count | Source | 295 | 153 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 153 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 153 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering5ScopeEE7emplaceIJRNS2_14CleanupManagerENS1_15CleanupLocationEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering24ConvertingInitializationEE7emplaceIJNS2_10ConversionENS2_10SGFContextEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering14CalleeTypeInfoEE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS1_14default_deleteIS5_EEEEE7emplaceIJS8_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering13ArgumentScopeEE7emplaceIJRNS2_14SILGenFunctionERNS1_11SILLocationEEEEvDpOT_ SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16CalleeEE7emplaceIJS2_EEEvDpOT_ Line | Count | Source | 295 | 69 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 69 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 69 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataEE7emplaceIJRPNS1_13SILBasicBlockERNS2_20SwitchCaseBranchDestERNSt3__18functionIFvNS2_12ManagedValueEONS2_18SwitchCaseFullExprEEEERNS3_19DefaultDispatchTimeERNS1_14ProfileCounterEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering21FormalEvaluationScopeEE7emplaceIJRNS2_14SILGenFunctionEEEEvDpOT_ _ZN4llvm8OptionalIN5swift11SILLocationEE7emplaceIJRPNS1_27RebindSelfInConstructorExprEEEEvDpOT_ Line | Count | Source | 295 | 1 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 1 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 1 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6RValueEE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering14SILGenFunction15OpaqueValueRAIIEE7emplaceIJRS3_PNS1_15OpaqueValueExprENS2_12ManagedValueEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering6LValueEE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEE7emplaceIJRNS1_8SILValueERNS1_16DiverseStackBase15stable_iteratorEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEE7emplaceIJRNS1_8SILValueENS1_16DiverseStackBase15stable_iteratorEEEEvDpOT_ SILGenPoly.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113ResultPlannerEE7emplaceIJRN5swift8Lowering14SILGenFunctionERNS5_11SILLocationERNS_11SmallVectorINS6_12ManagedValueELj8EEERNSB_INS5_8SILValueELj8EEEEEEvDpOT_ Line | Count | Source | 295 | 25 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 25 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 25 | } |
Unexecuted instantiation: SILGenProlog.cpp:_ZN4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEE7emplaceIJRNS1_10ASTContextERN12_GLOBAL__N_121LoweredParamGeneratorERNS2_18AbstractionPatternENS_8ArrayRefINS1_15AnyFunctionType5ParamEEEbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEE7emplaceIJEEEvDpOT_ _ZN4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEE7emplaceIJEEEvDpOT_ Line | Count | Source | 295 | 9 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 9 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 9 | } |
_ZN4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEE7emplaceIJS7_EEEvDpOT_ Line | Count | Source | 295 | 973 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 973 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 973 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_INS1_8SILValueEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE7emplaceIJRSB_SG_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119AvailableValueStoreEE7emplaceIJRN5swift32FieldSensitiveSSAPrunedLiveRangeEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE7emplaceIJRSC_SH_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_INS1_20DebugVarCarryingInstEEEEEEENS1_14FrozenMultiMapIjS6_NS4_6vectorIS8_NS4_9allocatorIS8_EEEEE15PairToSecondEltEEEE7emplaceIJRS9_SG_EEEvDpOT_ PredictableMemOpt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114AvailableValueEE7emplaceIJN5swift8SILValueERjRPNS5_9StoreInstEEEEvDpOT_ Line | Count | Source | 295 | 46 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 46 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 46 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_IPNS1_22SingleValueInstructionEEEEEEENS1_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEE7emplaceIJRSA_SF_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_IS6_EEEEEENS1_14FrozenMultiMapIS6_S6_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEE7emplaceIJRS9_SE_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEE7emplaceIJS3_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ValueLifetimeAnalysisEE7emplaceIJPNS1_11SILArgumentENS1_14TransformRangeINS_8ArrayRefIPNS1_7OperandEEENS1_11semanticarc18OwnershipLiveRange13OperandToUserEEEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ValueLifetimeAnalysisEE7emplaceIJRPNS1_14SILInstructionENS1_14TransformRangeINS_8ArrayRefIPNS1_7OperandEEENS1_11semanticarc18OwnershipLiveRange13OperandToUserEEEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_INS1_11semanticarc7Context21ConsumingOperandStateEEEEEEENS1_14FrozenMultiMapIS6_S9_NS4_6vectorISB_NS4_9allocatorISB_EEEEE15PairToSecondEltEEEE7emplaceIJRSC_SJ_EEEvDpOT_ _ZN4llvm8OptionalIN5swift15SILPrintContextEE7emplaceIJRNS_11raw_ostreamEbbEEEvDpOT_ Line | Count | Source | 295 | 1.13k | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 1.13k | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 1.13k | } |
_ZN4llvm8OptionalINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_jEEEEE7emplaceIJEEEvDpOT_ Line | Count | Source | 295 | 6 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 6 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 6 | } |
_ZN4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEE7emplaceIJEEEvDpOT_ Line | Count | Source | 295 | 998 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 998 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 998 | } |
_ZN4llvm8OptionalIN5swift13BasicBlockSetEE7emplaceIJRPNS1_11SILFunctionEEEEvDpOT_ Line | Count | Source | 295 | 1 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 1 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 1 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ConcreteExistentialInfoEE7emplaceIJRNS1_8SILValueERPNS1_22SingleValueInstructionEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ConcreteExistentialInfoEE7emplaceIJRNS1_8SILValueERPNS1_22SingleValueInstructionERNS1_7CanTypeERPNS1_12ProtocolDeclEEEEvDpOT_ _ZN4llvm8OptionalIN5swift25FindLocalApplySitesResultEE7emplaceIJEEEvDpOT_ Line | Count | Source | 295 | 1.09k | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 1.09k | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 1.09k | } |
_ZN4llvm8OptionalIN5swift13serialization26PrettyStackTraceModuleFileEE7emplaceIJRA101_KcRNS1_10ModuleFileEEEEvDpOT_ Line | Count | Source | 295 | 69 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 69 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 69 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang22OverloadedOperatorKindEE7emplaceIJS2_EEEvDpOT_ _ZN4llvm8OptionalIN5swift24SerializedModuleBaseNameEE7emplaceIJRS2_EEEvDpOT_ Line | Count | Source | 295 | 198 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 198 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 198 | } |
_ZN4llvm8OptionalIN5swift8Lowering13TypeConverter18GenericContextRAIIEE7emplaceIJRS3_RNS1_19CanGenericSignatureEEEEvDpOT_ Line | Count | Source | 295 | 116 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 116 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 116 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEE7emplaceIJSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE7emplaceIJRSC_SH_EEEvDpOT_ _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEE7emplaceIJRNS1_11SILFunctionENS2_17ErrorBehaviorKind7inner_tEEEEvDpOT_ Line | Count | Source | 295 | 10.9k | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 10.9k | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 10.9k | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEE7emplaceIJRKNS1_11SILFunctionENS2_17ErrorBehaviorKind7inner_tEPjEEEvDpOT_ _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEE7emplaceIJRKNS1_11SILFunctionENS2_17ErrorBehaviorKind7inner_tEEEEvDpOT_ Line | Count | Source | 295 | 3 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 3 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 3 | } |
_ZN4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEE7emplaceIJNS_19SmallPtrSetIteratorIS5_EESA_EEEvDpOT_ Line | Count | Source | 295 | 37 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 37 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 37 | } |
_ZN4llvm8OptionalIN5swift11constraints9inference10BindingSetEE7emplaceIJRS4_EEEvDpOT_ Line | Count | Source | 295 | 99 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 99 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 99 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8TypeBaseEE7emplaceIJRPNS1_16TypeVariableTypeEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints16SelectedOverloadEE7emplaceIJRS3_EEEvDpOT_ _ZN4llvm8OptionalIN5swift11constraints15ExpressionTimerEE7emplaceIJRPNS1_4ExprERNS2_16ConstraintSystemEEEEvDpOT_ Line | Count | Source | 295 | 113 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 113 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 113 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_14SaveAndRestoreIPN5swift11DeclContextEEEE7emplaceIJRS4_PNS2_11ClosureExprEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEE7emplaceIJRNS2_16ConstraintSystemERPNS2_10ConstraintEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS4_11constraints17ConstraintLocatorEEEEjEEE7emplaceIJSA_RjEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ExpressionTimerEE7emplaceIJRNS_12PointerUnionIJPNS1_4ExprEPNS2_17ConstraintLocatorEEEERNS2_16ConstraintSystemERjEEEvDpOT_ _ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEE7emplaceIJSA_RSB_EEEvDpOT_ Line | Count | Source | 295 | 81 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 81 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 81 | } |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEE7emplaceIJSA_RSB_EEEvDpOT_ Line | Count | Source | 295 | 31 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 31 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 31 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_18ConjunctionElementEEEE7emplaceIJSA_RSB_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ExpressionTimerEE7emplaceIJPNS2_17ConstraintLocatorERNS2_16ConstraintSystemEEEEvDpOT_ _ZN4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEE7emplaceIJRNS2_16ConstraintSystemERPNS1_16TypeVariableTypeEEEEvDpOT_ Line | Count | Source | 295 | 2.98k | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 2.98k | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 2.98k | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEE7emplaceIJRKS4_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalI19RuntimeVersionCheckE7emplaceIJRKN5swift12PlatformKindERKNS_12VersionTupleEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjPN5swift20GenericTypeParamTypeEEEE7emplaceIJRmRS5_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AvailabilityContextEE7emplaceIJS2_EEEvDpOT_ _ZN4llvm8OptionalIN5swift15ReferencedActorEE7emplaceIJS2_EEEvDpOT_ Line | Count | Source | 295 | 41 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 41 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 41 | } |
_ZN4llvm8OptionalIN5swift18ConformanceCheckerEE7emplaceIJRNS1_10ASTContextERPNS1_25NormalProtocolConformanceERNS_9SetVectorINS1_14MissingWitnessENSt3__16vectorISB_NSC_9allocatorISB_EEEENS_8DenseSetISB_NS_12DenseMapInfoISB_vEEEEEEEEEvDpOT_ Line | Count | Source | 295 | 9 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 9 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 9 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEE7emplaceIJS2_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEE7emplaceIJRS5_RS6_EEEvDpOT_ _ZN4llvm8OptionalIN5swift11constraints16ConstraintSystemEE7emplaceIJRPNS1_11DeclContextENS2_21ConstraintSystemFlagsEEEEvDpOT_ Line | Count | Source | 295 | 982 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 982 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 982 | } |
Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117FunctionBodyTimerEE7emplaceIJRPN5swift20AbstractFunctionDeclEEEEvDpOT_ Unexecuted instantiation: TypeCheckStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117FunctionBodyTimerEE7emplaceIJRPN5swift11ClosureExprEEEEvDpOT_ TypeCheckType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_126SILInnerGenericContextRAIIEE7emplaceIJRPN5swift24SILTypeResolutionContextERPNS5_16GenericParamListEEEEvDpOT_ Line | Count | Source | 295 | 16 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 16 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 16 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DiagnosticSuppressionEE7emplaceIJRNS1_16DiagnosticEngineEEEEvDpOT_ _ZN4llvm8OptionalIN5swift15DiagnosticQueueEE7emplaceIJRNS1_16DiagnosticEngineEbEEEvDpOT_ Line | Count | Source | 295 | 20 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 20 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 20 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6Parser13ContextChangeEE7emplaceIJRS2_RPNS1_10SourceFileEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DiagnosticTransactionEE7emplaceIJRNS1_16DiagnosticEngineEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6Parser17ParseFunctionBodyEE7emplaceIJRS2_RPNS1_25PatternBindingInitializerEEEEvDpOT_ _ZN4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEE7emplaceIJRS2_EEEvDpOT_ Line | Count | Source | 295 | 10 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 10 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 10 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6Parser13ContextChangeEE7emplaceIJRS2_RPNS1_16TopLevelCodeDeclEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5Lexer21ForwardSlashRegexRAIIEE7emplaceIJRS2_RbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_14SaveAndRestoreINS0_IN5swift12StableHasherEEEEEE7emplaceIJRS4_RKNSt3__19nullopt_tEEEEvDpOT_ _ZN4llvm8OptionalIN5swift12StableHasherEE7emplaceIJS2_EEEvDpOT_ Line | Count | Source | 295 | 11 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 11 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 11 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6Parser17BacktrackingScopeEE7emplaceIJRS2_EEEvDpOT_ _ZN4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEE7emplaceIJRS5_EEEvDpOT_ Line | Count | Source | 295 | 12 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 12 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 12 | } |
_ZN4llvm8OptionalIN5swift18ClangTypeConverterEE7emplaceIJRNS1_10ASTContextERN5clang10ASTContextERKNS_6TripleEEEEvDpOT_ Line | Count | Source | 295 | 5 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 5 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 5 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SILResultInfoEE7emplaceIJRNS1_7CanTypeERNS1_16ResultConventionEEEEvDpOT_ ASTPrinter.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111TypePrinterEE7emplaceIJRN5swift10ASTPrinterERNS5_12PrintOptionsEEEEvDpOT_ Line | Count | Source | 295 | 58 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 58 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 58 | } |
_ZN4llvm8OptionalIN5swift20ImplicitMemberActionEE7emplaceIJS2_EEEvDpOT_ Line | Count | Source | 295 | 42 | template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { | 296 | 42 | Storage.emplace(std::forward<ArgTypes>(Args)...); | 297 | 42 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang7tooling12dependencies25DependencyScanningServiceEE7emplaceIJNS3_12ScanningModeENS3_20ScanningOutputFormatENS1_10CASOptionsEDnDnDnbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang7tooling12dependencies25DependencyScanningServiceEE7emplaceIJNS3_12ScanningModeERKNS3_20ScanningOutputFormatERKNS1_10CASOptionsENSt3__110shared_ptrINS_3cas11ObjectStoreEEENSF_INSG_11ActionCacheEEENS_18IntrusiveRefCntPtrINSG_23CachingOnDiskFileSystemEEEbbEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIN5swift10IdentifierENS2_12PluginLoader11PluginEntryENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_14raw_fd_ostreamEE7emplaceIJRibEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_14raw_fd_ostreamEE7emplaceIJRKNS_9StringRefERNSt3__110error_codeENS_3sys2fs9OpenFlagsEEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINS_16NamedRegionTimerEE7emplaceIJRNS_9StringRefES5_RA6_KcRA18_S6_EEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEE7emplaceIJEEEvDpOT_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersEE7emplaceIJEEEvDpOT_ |
298 | | |
299 | | static constexpr Optional create(const T *y) { |
300 | | return y ? Optional(*y) : Optional(); |
301 | | } |
302 | | |
303 | 65.4k | Optional &operator=(const T &y) { |
304 | 65.4k | Storage = y; |
305 | 65.4k | return *this; |
306 | 65.4k | } _ZN4llvm8OptionalIN5swift10DiagnosticEEaSERKS2_ Line | Count | Source | 303 | 57 | Optional &operator=(const T &y) { | 304 | 57 | Storage = y; | 305 | 57 | return *this; | 306 | 57 | } |
Unexecuted instantiation: _ZN4llvm8OptionalImEaSERKm Unexecuted instantiation: _ZN4llvm8OptionalIN5clang17DirectoryEntryRefEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12FileEntryRefEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIbEaSERKb _ZN4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEaSERKS2_ Line | Count | Source | 303 | 8 | Optional &operator=(const T &y) { | 304 | 8 | Storage = y; | 305 | 8 | return *this; | 306 | 8 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12ModuleLoader23ModuleVersionSourceKindEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SubstitutionMapEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_9StringRefEEaSERKS1_ _ZN4llvm8OptionalIN5swift7SILTypeEEaSERKS2_ Line | Count | Source | 303 | 36 | Optional &operator=(const T &y) { | 304 | 36 | Storage = y; | 305 | 36 | return *this; | 306 | 36 | } |
_ZN4llvm8OptionalIN5swift11SILLocationEEaSERKS2_ Line | Count | Source | 303 | 130 | Optional &operator=(const T &y) { | 304 | 130 | Storage = y; | 305 | 130 | return *this; | 306 | 130 | } |
_ZN4llvm8OptionalIjEaSERKj Line | Count | Source | 303 | 42.1k | Optional &operator=(const T &y) { | 304 | 42.1k | Storage = y; | 305 | 42.1k | return *this; | 306 | 42.1k | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_6TripleEEaSERKS1_ Unexecuted instantiation: _ZN4llvm8OptionalINS_4wasm14WasmSymbolTypeEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_4wasm14WasmGlobalTypeEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_4wasm13WasmTableTypeEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIhEaSERKh Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift3ide3api7SDKNodeEEaSERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang14SourceLocationEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12LookupResult13AmbiguityKindEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEaSERKS8_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3ide3api14NodeAnnotationEEaSERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5clang10CASOptionsEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalINS_3cas9ObjectRefEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13serialization6StatusEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift6markup12CommentPartsEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIyEaSERKy _ZN4llvm8OptionalIN5swift5irgen11ClassLayoutEEaSERKS3_ Line | Count | Source | 303 | 2 | Optional &operator=(const T &y) { | 304 | 2 | Storage = y; | 305 | 2 | return *this; | 306 | 2 | } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoEEaSERKS4_ Unexecuted instantiation: GenDiffFunc.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_119LinearFuncFieldInfoEEaSERKS4_ _ZN4llvm8OptionalIN5swift18ClusteredBitVectorEEaSERKS2_ Line | Count | Source | 303 | 2 | Optional &operator=(const T &y) { | 304 | 2 | Storage = y; | 305 | 2 | return *this; | 306 | 2 | } |
_ZN4llvm8OptionalIN5swift5irgen15FunctionPointerEEaSERKS3_ Line | Count | Source | 303 | 9 | Optional &operator=(const T &y) { | 304 | 9 | Storage = y; | 305 | 9 | return *this; | 306 | 9 | } |
Unexecuted instantiation: GenStruct.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_114ClangFieldInfoEEaSERKS4_ GenStruct.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_115StructFieldInfoEEaSERKS4_ Line | Count | Source | 303 | 5 | Optional &operator=(const T &y) { | 304 | 5 | Storage = y; | 305 | 5 | return *this; | 306 | 5 | } |
Unexecuted instantiation: GenTuple.cpp:_ZN4llvm8OptionalIPKN12_GLOBAL__N_114TupleFieldInfoEEaSERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalINS_14TargetLowering11PtrAuthInfoEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen13OperationCostEEaSERKS3_ _ZN4llvm8OptionalIN5swift5irgen4SizeEEaSERKS3_ Line | Count | Source | 303 | 16 | Optional &operator=(const T &y) { | 304 | 16 | Storage = y; | 305 | 16 | return *this; | 306 | 16 | } |
Unexecuted instantiation: _ZN4llvm8OptionalINS0_IN5swift5irgen4SizeEEEEaSERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEEaSERKS5_ _ZN4llvm8OptionalIN5swift10SILDeclRefEEaSERKS2_ Line | Count | Source | 303 | 138 | Optional &operator=(const T &y) { | 304 | 138 | Storage = y; | 305 | 138 | return *this; | 306 | 138 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift12ProtocolDeclEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift8FuncDeclEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift18AssociatedTypeDeclEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift7VarDeclEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14CanTypeWrapperINS1_15AnyFunctionTypeEEEEaSERKS4_ _ZN4llvm8OptionalIN5swift13SILAccessKindEEaSERKS2_ Line | Count | Source | 303 | 6 | Optional &operator=(const T &y) { | 304 | 6 | Storage = y; | 305 | 6 | return *this; | 306 | 6 | } |
_ZN4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEaSERKS3_ Line | Count | Source | 303 | 108 | Optional &operator=(const T &y) { | 304 | 108 | Storage = y; | 305 | 108 | return *this; | 306 | 108 | } |
_ZN4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEaSERKS6_ Line | Count | Source | 303 | 13 | Optional &operator=(const T &y) { | 304 | 13 | Storage = y; | 305 | 13 | return *this; | 306 | 13 | } |
_ZN4llvm8OptionalIN5swift14CanTypeWrapperINS1_15SILFunctionTypeEEEEaSERKS4_ Line | Count | Source | 303 | 4 | Optional &operator=(const T &y) { | 304 | 4 | Storage = y; | 305 | 4 | return *this; | 306 | 4 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift14SILInstructionEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEaSERKS2_ _ZN4llvm8OptionalIN5swift8SILValueEEaSERKS2_ Line | Count | Source | 303 | 4.60k | Optional &operator=(const T &y) { | 304 | 4.60k | Storage = y; | 305 | 4.60k | return *this; | 306 | 4.60k | } |
Unexecuted instantiation: YieldOnceCheck.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift15EnumElementDeclEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift10ModuleDeclEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12AccessorKindEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9SourceLocEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13CapturedValueEEaSERKS2_ _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEaSERKS3_ Line | Count | Source | 303 | 69 | Optional &operator=(const T &y) { | 304 | 69 | Storage = y; | 305 | 69 | return *this; | 306 | 69 | } |
_ZN4llvm8OptionalIN5swift20AccessRepresentation4KindEEaSERKS3_ Line | Count | Source | 303 | 4.15k | Optional &operator=(const T &y) { | 304 | 4.15k | Storage = y; | 305 | 4.15k | return *this; | 306 | 4.15k | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17AccessStorageCastEEaSERKS2_ _ZN4llvm8OptionalIN5swift13AccessStorageEEaSERKS2_ Line | Count | Source | 303 | 2.93k | Optional &operator=(const T &y) { | 304 | 2.93k | Storage = y; | 305 | 2.93k | return *this; | 306 | 2.93k | } |
_ZN4llvm8OptionalIN5swift11RequirementEEaSERKS2_ Line | Count | Source | 303 | 148 | Optional &operator=(const T &y) { | 304 | 148 | Storage = y; | 305 | 148 | return *this; | 306 | 148 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20SILAccessEnforcementEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9SILParser19UnresolvedValueNameEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEaSERKS3_ _ZN4llvm8OptionalIN5swift11constraints5ScoreEEaSERKS3_ Line | Count | Source | 303 | 674 | Optional &operator=(const T &y) { | 304 | 674 | Storage = y; | 305 | 674 | return *this; | 306 | 674 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11AccessLevelEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJEEEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12PlatformKindEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AvailabilityContextEEaSERKS2_ _ZN4llvm8OptionalIN5swift14ActorIsolationEEaSERKS2_ Line | Count | Source | 303 | 14 | Optional &operator=(const T &y) { | 304 | 14 | Storage = y; | 305 | 14 | return *this; | 306 | 14 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift9ParamDeclEEaSERKS3_ Unexecuted instantiation: TypeCheckEffects.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15CheckedCastKindEEaSERKS2_ _ZN4llvm8OptionalIN5swift14AutoDiffConfigEEaSERKS2_ Line | Count | Source | 303 | 1 | Optional &operator=(const T &y) { | 304 | 1 | Storage = y; | 305 | 1 | return *this; | 306 | 1 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEaSERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIPN5swift19ProtocolConformanceEEaSERKS3_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5clang13SwiftAttrAttrEEaSERKS4_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4UUIDEEaSERKS2_ _ZN4llvm8OptionalIN5swift14TypeAttributes10ConventionEEaSERKS3_ Line | Count | Source | 303 | 30 | Optional &operator=(const T &y) { | 304 | 30 | Storage = y; | 305 | 30 | return *this; | 306 | 30 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5TokenEEaSERKS2_ Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle18ImplFunctionResultINS1_4TypeEEEEaSERKS5_ _ZN4llvm8OptionalINS_12VersionTupleEEaSERKS1_ Line | Count | Source | 303 | 1 | Optional &operator=(const T &y) { | 304 | 1 | Storage = y; | 305 | 1 | return *this; | 306 | 1 | } |
_ZN4llvm8OptionalIN5swift20RequirementSignatureEEaSERKS2_ Line | Count | Source | 303 | 329 | Optional &operator=(const T &y) { | 304 | 329 | Storage = y; | 305 | 329 | return *this; | 306 | 329 | } |
Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup12ReturnsFieldEEaSERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup11ThrowsFieldEEaSERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup20LocalizationKeyFieldEEaSERKS5_ Unexecuted instantiation: _ZN4llvm8OptionalIPKN5swift6markup9ParagraphEEaSERKS5_ _ZN4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEaSERKS4_ Line | Count | Source | 303 | 2.49k | Optional &operator=(const T &y) { | 304 | 2.49k | Storage = y; | 305 | 2.49k | return *this; | 306 | 2.49k | } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSERKS7_ _ZN4llvm8OptionalINSt3__14pairIjjEEEaSERKS3_ Line | Count | Source | 303 | 135 | Optional &operator=(const T &y) { | 304 | 135 | Storage = y; | 305 | 135 | return *this; | 306 | 135 | } |
_ZN4llvm8OptionalIPN5swift9rewriting11PropertyBagEEaSERKS4_ Line | Count | Source | 303 | 6.03k | Optional &operator=(const T &y) { | 304 | 6.03k | Storage = y; | 305 | 6.03k | return *this; | 306 | 6.03k | } |
_ZN4llvm8OptionalIN5swift9rewriting6SymbolEEaSERKS3_ Line | Count | Source | 303 | 1.19k | Optional &operator=(const T &y) { | 304 | 1.19k | Storage = y; | 305 | 1.19k | return *this; | 306 | 1.19k | } |
_ZN4llvm8OptionalIN5swift13SILResultInfoEEaSERKS2_ Line | Count | Source | 303 | 4 | Optional &operator=(const T &y) { | 304 | 4 | Storage = y; | 305 | 4 | return *this; | 306 | 4 | } |
|
307 | 261 | Optional &operator=(const Optional &O) = default; Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11FingerprintEEaSERKS3_ _ZN4llvm8OptionalIN5clang10CASOptionsEEaSERKS3_ Line | Count | Source | 307 | 88 | Optional &operator=(const Optional &O) = default; |
_ZN4llvm8OptionalINS_6TripleEEaSERKS2_ Line | Count | Source | 307 | 32 | Optional &operator=(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEEaSERKS4_ _ZN4llvm8OptionalINS_5APIntEEaSERKS2_ Line | Count | Source | 307 | 77 | Optional &operator=(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEaSERKS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEaSERKS7_ DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEEaSERKSC_ Line | Count | Source | 307 | 47 | Optional &operator=(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEaSERKSA_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEaSERKSG_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEaSERKS7_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEaSERKSC_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift10CustomAttrEPNS3_4DeclEEEEaSERKSA_ _ZN4llvm8OptionalIN5clang13DarwinSDKInfoEEaSERKS3_ Line | Count | Source | 307 | 1 | Optional &operator=(const Optional &O) = default; |
_ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEaSERKS8_ Line | Count | Source | 307 | 16 | Optional &operator=(const Optional &O) = default; |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEaSERKS9_ Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEaSERKS9_ |
308 | | |
309 | 1.24k | void reset() { Storage.reset(); }Unexecuted instantiation: _ZN4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12Preprocessor16PreambleSkipInfoEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen13IRGenFunction25ConditionalDominanceScopeEE5resetEv _ZN4llvm8OptionalINS_5APIntEE5resetEv Line | Count | Source | 309 | 44 | void reset() { Storage.reset(); } |
_ZN4llvm8OptionalINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S5_EEEEE5resetEv Line | Count | Source | 309 | 2 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering5ScopeEE5resetEv _ZN4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEE5resetEv Line | Count | Source | 309 | 348 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8SILValueEE5resetEv _ZN4llvm8OptionalIN5swift11SILLocationEE5resetEv Line | Count | Source | 309 | 1 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIjE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ConcreteExistentialInfoEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ProjectionPathEE5resetEv _ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEE5resetEv Line | Count | Source | 309 | 54 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_14SaveAndRestoreIPN5swift11DeclContextEEEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEE5resetEv _ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEE5resetEv Line | Count | Source | 309 | 81 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints5ScoreEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_18ConjunctionElementEEEE5resetEv _ZN4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEE5resetEv Line | Count | Source | 309 | 437 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEE5resetEv _ZN4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEE5resetEv Line | Count | Source | 309 | 224 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5Lexer21ForwardSlashRegexRAIIEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20TypeTransformContextEE5resetEv _ZN4llvm8OptionalIN5swift10DiagnosticEE5resetEv Line | Count | Source | 309 | 57 | void reset() { Storage.reset(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_16NamedRegionTimerEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEE5resetEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEE5resetEv |
310 | | |
311 | 9.11k | constexpr const T *getPointer() const { return &Storage.value(); }Unexecuted instantiation: _ZNK4llvm8OptionalINS_5AlignEE10getPointerEv _ZNK4llvm8OptionalIN5clang12FileEntryRefEE10getPointerEv Line | Count | Source | 311 | 6.97k | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6DIFile12ChecksumInfoIPNS_8MDStringEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6driver3Job16ResponseFileInfoEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15DiagnosticQueueEE10getPointerEv _ZNK4llvm8OptionalIN5swift16FixedOperandListILj1EEEE10getPointerEv Line | Count | Source | 311 | 1.07k | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S5_EEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_6TripleEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIN5clang19TemplateArgumentLocEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang4Sema20ImmediateDiagBuilderEE10getPointerEv DiagnosticVerifier.cpp:_ZNK4llvm8OptionalIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnE10getPointerEv Line | Count | Source | 311 | 24 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang10CASOptionsEE10getPointerEv _ZNK4llvm8OptionalIN5swift5irgen15FunctionPointerEE10getPointerEv Line | Count | Source | 311 | 17 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TypeImportInfoINS_9StringRefEEEE10getPointerEv Unexecuted instantiation: GenValueWitness.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetails12DirectResultEE10getPointerEv _ZNK4llvm8OptionalIN5swift5irgen4SizeEE10getPointerEv Line | Count | Source | 311 | 16 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23ConcreteExistentialInfoEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEE10getPointerEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEE10getPointerEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_113IndentContextEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5TokenEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIbbEEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13OutputFileMapEE10getPointerEv _ZNK4llvm8OptionalIN5swift14ImportedModuleEE10getPointerEv Line | Count | Source | 311 | 34 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignAsyncConventionEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignErrorConventionEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17ProfileCounterRefEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10ProjectionEE10getPointerEv _ZNK4llvm8OptionalIN5swift11constraints5ScoreEE10getPointerEv Line | Count | Source | 311 | 2 | constexpr const T *getPointer() const { return &Storage.value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintENS4_5ScoreEEEE10getPointerEv Line | Count | Source | 311 | 584 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEE10getPointerEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEE10getPointerEv _ZNK4llvm8OptionalIN5swift14AnyFunctionRefEE10getPointerEv Line | Count | Source | 311 | 140 | constexpr const T *getPointer() const { return &Storage.value(); } |
_ZNK4llvm8OptionalIN5swift22RequirementEnvironmentEE10getPointerEv Line | Count | Source | 311 | 234 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11RequirementEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19AbstractTypeWitnessEE10getPointerEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19TypeWitnessConflictEE10getPointerEv _ZNK4llvm8OptionalINS_12VersionTupleEE10getPointerEv Line | Count | Source | 311 | 1 | constexpr const T *getPointer() const { return &Storage.value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_3cas5CASIDEE10getPointerEv _ZNK4llvm8OptionalIN5swift20TypeTransformContextEE10getPointerEv Line | Count | Source | 311 | 1 | constexpr const T *getPointer() const { return &Storage.value(); } |
_ZNK4llvm8OptionalIN5swift9rewriting6SymbolEE10getPointerEv Line | Count | Source | 311 | 6 | constexpr const T *getPointer() const { return &Storage.value(); } |
|
312 | 198k | T *getPointer() { return &Storage.value(); }_ZN4llvm8OptionalIN5swift10DiagnosticEE10getPointerEv Line | Count | Source | 312 | 57 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINS_5AlignEE10getPointerEv Line | Count | Source | 312 | 1 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINS_13DIDerivedType11PtrAuthDataEE10getPointerEv _ZN4llvm8OptionalIN5swift12ObjCSelectorEE10getPointerEv Line | Count | Source | 312 | 14 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ArgumentEE10getPointerEv _ZN4llvm8OptionalIN5swift15DiagnosticQueueEE10getPointerEv Line | Count | Source | 312 | 16.9k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEE10getPointerEv Line | Count | Source | 312 | 11.8k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift16FixedOperandListILj1EEEE10getPointerEv Line | Count | Source | 312 | 341 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEE10getPointerEv Line | Count | Source | 312 | 18 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22SwiftDependencyTrackerEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_3orc15SymbolStringPtrEPNS3_8JITDylibEEEE10getPointerEv Unexecuted instantiation: Index.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_19MappedLocEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider15EnumElementInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEE10getPointerEv _ZN4llvm8OptionalIN5swift24FrontendInputsAndOutputsEE10getPointerEv Line | Count | Source | 312 | 2 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEE10getPointerEv Line | Count | Source | 312 | 29 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift19OutputFilesComputerEE10getPointerEv Line | Count | Source | 312 | 11 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEE10getPointerEv Line | Count | Source | 312 | 12 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryE10getPointerEv Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEE10getPointerEv _ZN4llvm8OptionalIN5swift13ModuleBuffersEE10getPointerEv Line | Count | Source | 312 | 73 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_9StringRefEE10getPointerEv _ZN4llvm8OptionalIN5swift7version7VersionEE10getPointerEv Line | Count | Source | 312 | 1 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang3cas21CompileJobCacheResult6OutputEE10getPointerEv _ZN4llvm8OptionalINS_6TripleEE10getPointerEv Line | Count | Source | 312 | 908 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen22NativeConventionSchemaEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen7AddressEE10getPointerEv _ZN4llvm8OptionalIN5swift7CanTypeEE10getPointerEv Line | Count | Source | 312 | 33 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen10LinkEntityEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen12StackAddressEE10getPointerEv GenMeta.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEE10getPointerEv Line | Count | Source | 312 | 6 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SubstitutionMapEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen19TypeEntityReferenceEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14FulfillmentMapEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEE10getPointerEv Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEE10getPointerEv _ZN4llvm8OptionalINS_3vfs10OutputFileEE10getPointerEv Line | Count | Source | 312 | 4 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119SymbolSourcesToEmitEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang19ASTSourceDescriptorEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINS_12DIExpression12FragmentInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen4SizeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen9AlignmentEE10getPointerEv _ZN4llvm8OptionalIN5swift18DiverseValueBufferINS1_8Lowering7CleanupEEEE10getPointerEv Line | Count | Source | 312 | 153 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataEE10getPointerEv _ZN4llvm8OptionalIN5swift10SILDeclRefEE10getPointerEv Line | Count | Source | 312 | 1.94k | T *getPointer() { return &Storage.value(); } |
SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_18CallSiteEE10getPointerEv Line | Count | Source | 312 | 355 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering14CalleeTypeInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering13ArgumentScopeEE10getPointerEv _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEE10getPointerEv Line | Count | Source | 312 | 116 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEE10getPointerEv SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16CalleeEE10getPointerEv Line | Count | Source | 312 | 23 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering20LogicalPathComponent13AccessStorageEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEE10getPointerEv SILGenPoly.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113ResultPlannerEE10getPointerEv Line | Count | Source | 312 | 50 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ActorIsolationEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEE10getPointerEv Line | Count | Source | 312 | 930 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift16MatchingSetFlagsEE10getPointerEv Line | Count | Source | 312 | 454 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEE10getPointerEv Line | Count | Source | 312 | 1.02k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEE10getPointerEv Line | Count | Source | 312 | 17.2k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEE10getPointerEv Line | Count | Source | 312 | 9.34k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift14ProjectionPathEE10getPointerEv Line | Count | Source | 312 | 4 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift14SILVTableEntryEE10getPointerEv Line | Count | Source | 312 | 7 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEE10getPointerEv Line | Count | Source | 312 | 30 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16SILParameterInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9ValueBase25DefiningInstructionResultEE10getPointerEv DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEE10getPointerEv Line | Count | Source | 312 | 149 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_14AutoDiffConfigEEEE10getPointerEv Line | Count | Source | 312 | 16 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEEE10getPointerEv Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119AvailableValueStoreEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIN5swift7SILTypeEjEEE10getPointerEv Line | Count | Source | 312 | 88 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SymbolicValueEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13BorrowedValueEE10getPointerEv _ZN4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEE10getPointerEv Line | Count | Source | 312 | 272 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalI20ConcreteArgumentCopyE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ValueLifetimeAnalysisEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SILPrintContextEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEE10getPointerEv Line | Count | Source | 312 | 359 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEE10getPointerEv Line | Count | Source | 312 | 30 | T *getPointer() { return &Storage.value(); } |
SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_120StorageStateTrackingINS1_10LiveValuesEEEE10getPointerEv Line | Count | Source | 312 | 86 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12siloptimizer7CleanupIvJPNS1_14SILInstructionEEEEE10getPointerEv Unexecuted instantiation: SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEE10getPointerEv _ZN4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEE10getPointerEv Line | Count | Source | 312 | 6 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift13BasicBlockSetEE10getPointerEv Line | Count | Source | 312 | 5 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13LoadOperationEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockES5_EEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ConcreteExistentialInfoEE10getPointerEv _ZN4llvm8OptionalIN5swift25FindLocalApplySitesResultEE10getPointerEv Line | Count | Source | 312 | 3.44k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN21LexicalDestroyFolding5MatchEE10getPointerEv Unexecuted instantiation: SILInliner.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEE10getPointerEv Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5TokenEE10getPointerEv Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112TrailingInfoEE10getPointerEv Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113IndentContextEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ReferenceMetaDataEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedIPNS1_12ArgumentListEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13OutputFileMapEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeEjEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExpandedMacroDefinitionEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ImportedModuleEE10getPointerEv _ZN4llvm8OptionalIN5swift12TangentSpaceEE10getPointerEv Line | Count | Source | 312 | 620 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: SILFunctionType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEE10getPointerEv _ZN4llvm8OptionalIN5swift14AnyFunctionRefEE10getPointerEv Line | Count | Source | 312 | 472 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8SILValueEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7SILTypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SILLocationEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13CapturedValueEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13AccessStorageEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker5ErrorEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEE10getPointerEv _ZN4llvm8OptionalIN5swift11RequirementEE10getPointerEv Line | Count | Source | 312 | 3.32k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11TaggedUnionIJyxNS_9StringRefEEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_8CaseStmtEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints16ConstraintSystem15TypeMatchResultEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEE10getPointerEv Line | Count | Source | 312 | 361 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints13ConstraintFixEjEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints23AppliedBuilderTransformEE10getPointerEv Unexecuted instantiation: CSSyntacticElement.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_123SyntacticElementContextEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17CompletionArgInfoEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEE10getPointerEv Line | Count | Source | 312 | 1.72k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12TupleElementEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeEE10getPointerEv Line | Count | Source | 312 | 6 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift15AnyFunctionType5ParamEE10getPointerEv Line | Count | Source | 312 | 481 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SourceRangeEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintEjEEE10getPointerEv Line | Count | Source | 312 | 54 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS4_11constraints17ConstraintLocatorEEEEjEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints19TypeVariableBindingEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints18ConjunctionElementEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints9inference10BindingSetEE10getPointerEv Line | Count | Source | 312 | 19 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEE10getPointerEv Line | Count | Source | 312 | 81 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEE10getPointerEv Line | Count | Source | 312 | 29 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_12ArgumentListEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEE10getPointerEv Line | Count | Source | 312 | 6.48k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEE10getPointerEv Line | Count | Source | 312 | 287 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairIjPN5swift4ExprEEEE10getPointerEv Line | Count | Source | 312 | 15 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift11constraints15ExpressionTimerEE10getPointerEv Line | Count | Source | 312 | 614 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementEE10getPointerEv Line | Count | Source | 312 | 5.78k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericEE10getPointerEv Line | Count | Source | 312 | 2.89k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift11constraints16SelectedOverloadEE10getPointerEv Line | Count | Source | 312 | 1.87k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12LookupResultEE10getPointerEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamEE10getPointerEv Line | Count | Source | 312 | 4 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIPN5swift20GenericTypeParamTypeENS3_15RequirementKindEEEE10getPointerEv Line | Count | Source | 312 | 576 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalI19RuntimeVersionCheckE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjPN5swift20GenericTypeParamTypeEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23SyntacticTypoCorrectionEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEE10getPointerEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PartialApplyThunkInfoEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIN5swift15ConcreteDeclRefENS3_9SourceLocEEEE10getPointerEv Line | Count | Source | 312 | 162 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15ReferencedActorEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedINS1_18StaticSpellingKindEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10ObjCReasonEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift11SourceRangeEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4TypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExternalMacroDefinitionEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEE10getPointerEv _ZN4llvm8OptionalIN5swift14AutoDiffConfigEE10getPointerEv Line | Count | Source | 312 | 10 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEE10getPointerEv _ZN4llvm8OptionalIN5swift11AccessScopeEE10getPointerEv Line | Count | Source | 312 | 283 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift11constraints16ConstraintSystemEE10getPointerEv Line | Count | Source | 312 | 9.55k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift11constraints8SolutionEE10getPointerEv Line | Count | Source | 312 | 1.20k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEE10getPointerEv Line | Count | Source | 312 | 596 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TypeWitnessConflictEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEE10getPointerEv _ZN4llvm8OptionalIN5swift14TypeResolutionEE10getPointerEv Line | Count | Source | 312 | 155 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperLValuenessEE10getPointerEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperMutabilityEE10getPointerEv TypeCheckSwitchStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEE10getPointerEv Line | Count | Source | 312 | 92 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeAttributes19OpaqueReturnTypeRefEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang10CASOptionsEE10getPointerEv _ZN4llvm8OptionalINS_8ArrayRefIN5swift14ImportedModuleEEEE10getPointerEv Line | Count | Source | 312 | 82 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang8QualTypeEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12CXXScopeSpecEE10getPointerEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_6APSIntEN5swift4TypeEEEE10getPointerEv Unexecuted instantiation: ImportName.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEE10getPointerEv _ZN4llvm8OptionalIN5swift13ClangImporter14Implementation25ImportParameterTypeResultEE10getPointerEv Line | Count | Source | 312 | 54 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DiagnosticTransactionEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEE10getPointerEv _ZN4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEE10getPointerEv Line | Count | Source | 312 | 10 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21EditorPlaceholderDataEE10getPointerEv _ZN4llvm8OptionalIN5swift12StableHasherEE10getPointerEv Line | Count | Source | 312 | 11.8k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift10ASTExtInfoEE10getPointerEv Line | Count | Source | 312 | 56.8k | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift13SILResultInfoEE10getPointerEv Line | Count | Source | 312 | 63 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ClangTypeConverterEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12FileEntryRefEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle18ImplFunctionResultINS1_4TypeEEEE10getPointerEv _ZN4llvm8OptionalIN5swift20TypeTransformContextEE10getPointerEv Line | Count | Source | 312 | 2 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalIN5swift9SourceLocEE10getPointerEv Line | Count | Source | 312 | 9 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__14pairIjjEEE10getPointerEv Line | Count | Source | 312 | 856 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift8TypeReprEjEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ExternalSourceLocs7RawLocsEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AvailabilityContextEE10getPointerEv _ZN4llvm8OptionalINSt3__14pairIPN5swift8CaseStmtEPNS3_7PatternEEEE10getPointerEv Line | Count | Source | 312 | 20 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConventionEE10getPointerEv _ZN4llvm8OptionalIN5swift14DiagnosticInfoEE10getPointerEv Line | Count | Source | 312 | 180 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11CommentInfoEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11FingerprintEE10getPointerEv _ZN4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEE10getPointerEv Line | Count | Source | 312 | 9.72k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEE10getPointerEv _ZN4llvm8OptionalIN5swift9rewriting6SymbolEE10getPointerEv Line | Count | Source | 312 | 14.4k | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CanGenericSignatureEE10getPointerEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13ArchetypeTypeEPNS3_23OpaqueTypeArchetypeTypeEEEE10getPointerEv _ZN4llvm8OptionalIN5swift19GeneratedSourceInfoEE10getPointerEv Line | Count | Source | 312 | 3 | T *getPointer() { return &Storage.value(); } |
_ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE10getPointerEv Line | Count | Source | 312 | 142 | T *getPointer() { return &Storage.value(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEEE10getPointerEv _ZN4llvm8OptionalINS_12VersionTupleEE10getPointerEv Line | Count | Source | 312 | 2 | T *getPointer() { return &Storage.value(); } |
|
313 | 236k | constexpr const T &value() const & { return Storage.value(); }_ZNKR4llvm8OptionalINS_5AlignEE5valueEv Line | Count | Source | 313 | 230 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalImE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang17DirectoryEntryRefEE5valueEv _ZNKR4llvm8OptionalIN5clang12FileEntryRefEE5valueEv Line | Count | Source | 313 | 8.95k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_6TripleEE5valueEv _ZNKR4llvm8OptionalINS_12VersionTupleEE5valueEv Line | Count | Source | 313 | 332 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPNS_8MDStringEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_12DIExpression12FragmentInfoEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11FingerprintEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEE5valueEv _ZNKR4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEE5valueEv Line | Count | Source | 313 | 8 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalIN5swift14TypeAttributes10ConventionEE5valueEv Line | Count | Source | 313 | 23 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift4UUIDEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift8TypeReprEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIbE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12ModuleLoader23ModuleVersionSourceKindEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang11SourceRangeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang15CharSourceRangeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang9FixItHintEE5valueEv _ZNKR4llvm8OptionalIjE5valueEv Line | Count | Source | 313 | 124k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEEE5valueEv _ZNKR4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEE5valueEv Line | Count | Source | 313 | 114 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalINS_8ArrayRefIN5swift16AttributedImportINS2_14ImportedModuleEEEEEE5valueEv Line | Count | Source | 313 | 8.90k | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEE5valueEv Line | Count | Source | 313 | 12 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift7SILTypeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11SILLocationEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift18ReferenceOwnershipEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_15MemoryBufferRefEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11AccessLevelEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIyE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21CopyPropagationOptionEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_7remarks14RemarkLocationEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPNS_5ValueEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_4wasm14WasmSymbolTypeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_9StringRefEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_4wasm14WasmGlobalTypeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_4wasm13WasmTableTypeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_8ArrayRefIN5clang19TemplateArgumentLocEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang4Sema20ImmediateDiagBuilderEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang14SourceLocationEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIhE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift20ModuleDependencyInfoEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift16OptionalTypeKindEE5valueEv _ZNKR4llvm8OptionalIN5swift15LineColumnRangeEE5valueEv Line | Count | Source | 313 | 6 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEE5valueEv Line | Count | Source | 313 | 74 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift13serialization6StatusEE5valueEv _ZNKR4llvm8OptionalIN5swift7version7VersionEE5valueEv Line | Count | Source | 313 | 1 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift6markup12CommentPartsEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__16vectorIN5swift25EnumElementParameterValueENS1_9allocatorIS4_EEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift5irgen22NativeConventionSchemaEE5valueEv _ZNKR4llvm8OptionalIN5swift5irgen15FunctionPointerEE5valueEv Line | Count | Source | 313 | 8 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalINS_5APIntEE5valueEv Line | Count | Source | 313 | 661 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift18GenericRequirementEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift5irgen14MetadataSourceEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_3cas5CASIDEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_6VFInfoEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_8DenseMapIlNS_34PreservedCFGCheckerInstrumentation7BBGuardENS_12DenseMapInfoIlvEENS_6detail12DenseMapPairIlS3_EEEEE5valueEv _ZNKR4llvm8OptionalIN5swift5irgen9AlignmentEE5valueEv Line | Count | Source | 313 | 1 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalIN5swift5irgen4SizeEE5valueEv Line | Count | Source | 313 | 78 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEE5valueEv _ZNKR4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEE5valueEv Line | Count | Source | 313 | 158 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift9MacroRoleEE5valueEv _ZNKR4llvm8OptionalIN5swift8Lowering18AbstractionPatternEE5valueEv Line | Count | Source | 313 | 76 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift20SILAccessEnforcementEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKjE5valueEv _ZNKR4llvm8OptionalIN5swift13SILAccessKindEE5valueEv Line | Count | Source | 313 | 6 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEE5valueEv Line | Count | Source | 313 | 109 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEE5valueEv Line | Count | Source | 313 | 4 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEE5valueEv Line | Count | Source | 313 | 27 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEE5valueEv Unexecuted instantiation: DefiniteInitialization.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_16DIKindEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_INS1_8SILValueEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_INS1_20DebugVarCarryingInstEEEEEEENS1_14FrozenMultiMapIjS6_NS4_6vectorIS8_NS4_9allocatorIS8_EEEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift20DebugVarCarryingInstEE5valueEv _ZNKR4llvm8OptionalIN5swift8SILValueEE5valueEv Line | Count | Source | 313 | 4.60k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_IPNS1_22SingleValueInstructionEEEEEEENS1_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift22SingleValueInstructionEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_IS6_EEEEEENS1_14FrozenMultiMapIS6_S6_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEE5valueEv _ZNKR4llvm8OptionalIN5swift16BuiltinValueKindEE5valueEv Line | Count | Source | 313 | 55.6k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift23ConcreteExistentialInfoEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_INS1_11semanticarc7Context21ConsumingOperandStateEEEEEEENS1_14FrozenMultiMapIS6_S9_NS4_6vectorISB_NS4_9allocatorISB_EEEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11semanticarc7Context21ConsumingOperandStateEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift17AccessStorageCastEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22LoadOwnershipQualifierEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift6markup20LocalizationKeyFieldEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift6markup9ParagraphEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift6markup12ReturnsFieldEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift6markup11ThrowsFieldEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS4_18ModuleDepGraphNodeEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEE5valueEv _ZNKR4llvm8OptionalIN5swift21DifferentiabilityKindEE5valueEv Line | Count | Source | 313 | 1.80k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang8QualTypeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang11ConceptDeclEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang12TemplateNameEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang7TagDeclEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang20TemplateTypeParmDeclEE5valueEv _ZNKR4llvm8OptionalIN5swift9SourceLocEE5valueEv Line | Count | Source | 313 | 335 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22ForeignErrorConventionEE5valueEv _ZNKR4llvm8OptionalIN5swift10SILDeclRefEE5valueEv Line | Count | Source | 313 | 264 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22ForeignAsyncConventionEE5valueEv Unexecuted instantiation: SILProfiler.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_111CounterExprEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift17ProfileCounterRefEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEE5valueEv _ZNKR4llvm8OptionalIN5swift13AccessStorageEE5valueEv Line | Count | Source | 313 | 2.93k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__15tupleIJjjEEEE5valueEv _ZNKR4llvm8OptionalIPN5swift7OperandEE5valueEv Line | Count | Source | 313 | 245 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEE5valueEv Line | Count | Source | 313 | 18 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift23KeyPathPatternComponentEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEE5valueEv _ZNKR4llvm8OptionalIN5swift11constraints9ScoreKindEE5valueEv Line | Count | Source | 313 | 1 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEE5valueEv _ZNKR4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEE5valueEv Line | Count | Source | 313 | 2 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift4TypeEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints5ScoreEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21ContextualTypePurposeEE5valueEv _ZNKR4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEE5valueEv Line | Count | Source | 313 | 20.0k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints16IUOReferenceKindEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift19ExportabilityReasonEE5valueEv Unexecuted instantiation: TypeCheckAvailability.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_119ReplacementDeclKindEE5valueEv _ZNKR4llvm8OptionalIN5swift13SendableCheckEE5valueEv Line | Count | Source | 313 | 30 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12VarRefUseEnvEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22AutomaticEnumValueKindEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift18StaticSpellingKindEE5valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift16BuiltinMacroKindEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift27CheckGenericArgumentsResult22RequirementFailureInfoEE5valueEv _ZNKR4llvm8OptionalIN5swift26KnownDerivableProtocolKindEE5valueEv Line | Count | Source | 313 | 1.29k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift19AbstractTypeWitnessEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalI20LayoutConstraintKindE5valueEv _ZNKR4llvm8OptionalIN5swift19TypeResolutionStageEE5valueEv Line | Count | Source | 313 | 34 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift10IdentifierEE5valueEv _ZNKR4llvm8OptionalIN5swift19CtorInitializerKindEE5valueEv Line | Count | Source | 313 | 331 | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang6ModuleEE5valueEv Unexecuted instantiation: ImportName.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21PlatformConditionKindEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12ObjCSelectorEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorIN5clang26dependency_directives_scan9DirectiveELj20EEEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_3cas9ObjectRefEE5valueEv _ZNKR4llvm8OptionalIN5swift12AccessorKindEE5valueEv Line | Count | Source | 313 | 1 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalIN5swift17KnownProtocolKindEE5valueEv Line | Count | Source | 313 | 222 | constexpr const T &value() const & { return Storage.value(); } |
_ZNKR4llvm8OptionalIN5swift14ParamSpecifierEE5valueEv Line | Count | Source | 313 | 4.62k | constexpr const T &value() const & { return Storage.value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift11InitializerEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEE5valueEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift9rewriting6SymbolEE5valueEv _ZNKR4llvm8OptionalIiE5valueEv Line | Count | Source | 313 | 2 | constexpr const T &value() const & { return Storage.value(); } |
|
314 | | LLVM_DEPRECATED("Use value instead.", "value") |
315 | | constexpr const T &getValue() const & { |
316 | | return Storage.value(); |
317 | | } |
318 | 2.33M | T &value() & { return Storage.value(); }_ZNR4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5valueEv Line | Count | Source | 318 | 138 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKcE5valueEv _ZNR4llvm8OptionalIN5swift10DiagnosticEE5valueEv Line | Count | Source | 318 | 67 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIjE5valueEv Line | Count | Source | 318 | 191k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_12DenormalMode16DenormalModeKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalItE5valueEv _ZNR4llvm8OptionalIyE5valueEv Line | Count | Source | 318 | 730 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_5AlignEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12RoundingModeEE5valueEv _ZNR4llvm8OptionalINS_9StringRefEE5valueEv Line | Count | Source | 318 | 4.28k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_2fp17ExceptionBehaviorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEE5valueEv _ZNR4llvm8OptionalIN5clang15NullabilityKindEE5valueEv Line | Count | Source | 318 | 17 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift10ASTExtInfoEE5valueEv Line | Count | Source | 318 | 144k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift17KnownProtocolKindEE5valueEv Line | Count | Source | 318 | 19.9k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11FingerprintEE5valueEv Line | Count | Source | 318 | 1.05k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ApplyIsolationCrossingEE5valueEv _ZNR4llvm8OptionalIbE5valueEv Line | Count | Source | 318 | 131k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEE5valueEv Line | Count | Source | 318 | 119 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19PatternBindingState4KindEE5valueEv _ZNR4llvm8OptionalIN5swift7VarDecl10IntroducerEE5valueEv Line | Count | Source | 318 | 473 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIN5swift14ProfileCounterEEEE5valueEv Line | Count | Source | 318 | 19 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEE5valueEv Line | Count | Source | 318 | 39 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_18ThreadPoolStrategyEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_3cas5CASIDEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11LangOptions23ASTVerifierOverrideKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift7FeatureEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21CopyPropagationOptionEE5valueEv _ZNR4llvm8OptionalIN5swift11SILLocationEE5valueEv Line | Count | Source | 318 | 257 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16SILDebugVariableEE5valueEv Line | Count | Source | 318 | 460 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift8SILValueEE5valueEv Line | Count | Source | 318 | 5.71k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_9CodeModel5ModelEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25fine_grained_dependencies18SourceFileDepGraphEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKNS_8FunctionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_17TargetLibraryInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13FastMathFlagsEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13BasicAAResultEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_9AAResultsEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIxE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIdE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIDnE5valueEv Unexecuted instantiation: swift_api_digester_main.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift3ide3api7SDKNodeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_15MemoryBufferRefEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang12LookupResult13AmbiguityKindEE5valueEv Unexecuted instantiation: swift_cache_tool_main.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_120SwiftCacheToolActionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_3cas9ObjectRefEE5valueEv _ZNR4llvm8OptionalIN5swift11AccessLevelEE5valueEv Line | Count | Source | 318 | 152k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift7version7VersionEE5valueEv Line | Count | Source | 318 | 27 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEE5valueEv Line | Count | Source | 318 | 242 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18ModuleDependencyIDEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang7tooling12dependencies25DependencyScanningServiceEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift20ModuleDependencyInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16OptionalTypeKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12FunctionTypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24LoweredFunctionSignatureEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15cxx_translation19RepresentationErrorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES4_EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19ClangRepresentationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24LoweredFunctionSignature16DirectResultTypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19CanGenericSignatureEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEE5valueEv _ZNR4llvm8OptionalINSt3__13setINS_9StringRefENS1_4lessIS3_EENS1_9allocatorIS3_EEEEE5valueEv Line | Count | Source | 318 | 13 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEEE5valueEv _ZNR4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEE5valueEv Line | Count | Source | 318 | 22 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift24SupplementaryOutputPathsEE5valueEv Line | Count | Source | 318 | 11 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZNR4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalImE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift27UnavailableDeclOptimizationEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift27UnavailableDeclOptimizationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift17StrictConcurrencyEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift17StrictConcurrencyEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift28AccessNoteDiagnosticBehaviorEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift28AccessNoteDiagnosticBehaviorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16ConcurrencyModelEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IbEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21DestroyHoistingOptionEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21CopyPropagationOptionEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21DestroyHoistingOptionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift16JITDebugArtifactEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16JITDebugArtifactEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift16IRGenLLVMLTOKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16IRGenLLVMLTOKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFvvEEEE5valueEv _ZNR4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_6BLAKE3EE5valueEv _ZNR4llvm8OptionalIN5swift13ModuleBuffersEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__110unique_ptrINS_12MemoryBufferENS1_14default_deleteIS3_EEEEE5valueEv _ZNR4llvm8OptionalIN5swift14SourceFileKindEE5valueEv Line | Count | Source | 318 | 11 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15AccessNotesFileEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16DiagnosticEngineEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13serialization6StatusEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift3ide3api7KeyKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift3ide3api15SDKNodeDeclTypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift3ide3api11SDKNodeDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api7KeyKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api11SDKNodeKindEE5valueEv _ZNR4llvm8OptionalIN5swift12AccessorKindEE5valueEv Line | Count | Source | 318 | 563 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift8DeclKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8DeclKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIN5swift15CustomAttrValueELj2EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEE5valueEv _ZNR4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_13AtomicRMWInst5BinOpEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_5ValueEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen12StackAddressEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen7AddressEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIN5swift7SILTypeEEEE5valueEv _ZNR4llvm8OptionalIPNS_8FunctionEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift5irgen11ClassLayoutEE5valueEv Line | Count | Source | 318 | 24 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift6Mangle10ASTMangler14SpecialContextEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen19ConstantInitBuilderEE5valueEv _ZNR4llvm8OptionalIN5swift5irgen10LinkEntityEE5valueEv Line | Count | Source | 318 | 22 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoEE5valueEv Unexecuted instantiation: GenDiffFunc.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_119LinearFuncFieldInfoEE5valueEv _ZNR4llvm8OptionalIN5swift18ClusteredBitVectorEE5valueEv Line | Count | Source | 318 | 7 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift5irgen9AtomicityEE5valueEv Line | Count | Source | 318 | 10 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_4TypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen15FunctionPointerEE5valueEv _ZNR4llvm8OptionalIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionEE5valueEv Line | Count | Source | 318 | 10 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEE5valueEv Unexecuted instantiation: GenMeta.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_9InlineAsmEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen14FulfillmentMapEE5valueEv _ZNR4llvm8OptionalINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS5_12ConstantInitEEEEE5valueEv Line | Count | Source | 318 | 21 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: GenStruct.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_114ClangFieldInfoEE5valueEv GenStruct.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_115StructFieldInfoEE5valueEv Line | Count | Source | 318 | 12 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: GenTuple.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_114TupleFieldInfoEE5valueEv _ZNR4llvm8OptionalINS_5APIntEE5valueEv Line | Count | Source | 318 | 47 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEE5valueEv _ZNR4llvm8OptionalINS_3vfs10OutputFileEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang19ASTSourceDescriptorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_12DIExpressionEE5valueEv _ZNR4llvm8OptionalINS_8TypeSizeEE5valueEv Line | Count | Source | 318 | 3 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: IRGenSIL.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_112LoweredValueEE5valueEv _ZNR4llvm8OptionalIN5swift5irgen13OperationCostEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift5irgen19NonFixedOffsetsImplEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IhEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIhE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__13setIaNS1_4lessIaEENS1_9allocatorIaEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23OriginallyDefinedInAttr13ActiveVersionEE5valueEv _ZNR4llvm8OptionalINS_10DataLayoutEE5valueEv Line | Count | Source | 318 | 163 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_5MachO13PackedVersionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift5irgen4SizeEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift5irgen9AlignmentEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IjEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_8ConstantEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen4SizeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen9AlignmentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen14YAMLModuleNodeEE5valueEv _ZNR4llvm8OptionalIN5swift7RT_KindEE5valueEv Line | Count | Source | 318 | 82 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEE5valueEv Line | Count | Source | 318 | 435 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering8JumpDestEE5valueEv _ZNR4llvm8OptionalIN5swift10SILDeclRefEE5valueEv Line | Count | Source | 318 | 787 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12ProtocolDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8FuncDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18AssociatedTypeDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift7VarDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19ProtocolConformanceEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEE5valueEv _ZNR4llvm8OptionalIN5swift8Lowering15FunctionSectionEE5valueEv Line | Count | Source | 318 | 6 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering24ConvertingInitializationEE5valueEv SILGenApply.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_18CallSiteEE5valueEv Line | Count | Source | 318 | 143 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering14CalleeTypeInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS1_14default_deleteIS5_EEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering18SpecializedEmitterEE5valueEv SILGenApply.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_16CalleeEE5valueEv Line | Count | Source | 318 | 104 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIPN5swift4ExprELj2EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering22ConversionPeepholeHintEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering6LValueEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering10ConversionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering12ManagedValueEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering6RValueEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift7ASTNodeEE5valueEv _ZNR4llvm8OptionalIN5swift20SILAccessEnforcementEE5valueEv Line | Count | Source | 318 | 21 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14CanTypeWrapperINS1_15AnyFunctionTypeEEEE5valueEv _ZNR4llvm8OptionalIN5swift14SILVTableEntryEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEE5valueEv Line | Count | Source | 318 | 715 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEE5valueEv Line | Count | Source | 318 | 1.11k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEE5valueEv Line | Count | Source | 318 | 50.2k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKjE5valueEv _ZNR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEE5valueEv Line | Count | Source | 318 | 124 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEE5valueEv Line | Count | Source | 318 | 140 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13SILAccessKindEE5valueEv _ZNR4llvm8OptionalIN5swift14ProjectionPathEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift13ArrayCallKindEE5valueEv Line | Count | Source | 318 | 70 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift25FindLocalApplySitesResultEE5valueEv Line | Count | Source | 318 | 1.08k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift21EpilogueARCBlockStateEE5valueEv Line | Count | Source | 318 | 43 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift7SILTypeEE5valueEv Line | Count | Source | 318 | 127 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEE5valueEv _ZNR4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEE5valueEv Line | Count | Source | 318 | 13 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14CanTypeWrapperINS1_15SILFunctionTypeEEEE5valueEv Line | Count | Source | 318 | 6 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16SILParameterInfoEE5valueEv Line | Count | Source | 318 | 77 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEE5valueEv Line | Count | Source | 318 | 9 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25SILInstructionResultArrayEE5valueEv _ZNR4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEE5valueEv Line | Count | Source | 318 | 2.78k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9ApplySiteEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14AllocStackInstEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_16PartialApplyInstENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15DestroyAddrInstEE5valueEv DefiniteInitialization.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_16DIKindEE5valueEv Line | Count | Source | 318 | 13 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEE5valueEv Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_117ConflictingAccessEE5valueEv _ZNR4llvm8OptionalIN5swift14AutoDiffConfigEE5valueEv Line | Count | Source | 318 | 3 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16SubElementOffsetEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_7SILNodeENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS5_IPNS1_7OperandENS1_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS1_14FrozenMultiMapIS7_SC_NS_11SmallVectorISE_Lj8EEEE15PairToSecondEltEEEE5valueEv PredictableMemOpt.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_114AvailableValueEE5valueEv Line | Count | Source | 318 | 46 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: YieldOnceCheck.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEE5valueEv YieldOnceCheck.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck7BBStateEE5valueEv Line | Count | Source | 318 | 18 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13SymbolicValueEE5valueEv _ZNR4llvm8OptionalIN5swift17FullApplySiteKind7innertyEE5valueEv Line | Count | Source | 318 | 116k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift17FullApplySiteKindEE5valueEv Line | Count | Source | 318 | 25.1k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift13ApplySiteKind7innertyEE5valueEv Line | Count | Source | 318 | 287k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8PassKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEE5valueEv _ZNR4llvm8OptionalIN5swift13ApplySiteKindEE5valueEv Line | Count | Source | 318 | 4.26k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEE5valueEv Line | Count | Source | 318 | 3 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEE5valueEv _ZNR4llvm8OptionalIPN5swift14SILInstructionEE5valueEv Line | Count | Source | 318 | 128k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16BuiltinValueKindEE5valueEv Line | Count | Source | 318 | 60.9k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23ConcreteExistentialInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift29ConcreteOpenedExistentialInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalI20ConcreteArgumentCopyE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEE5valueEv _ZNR4llvm8OptionalIN5swift21MarkUninitializedInst4KindEE5valueEv Line | Count | Source | 318 | 10 | T &value() & { return Storage.value(); } |
RedundantOverflowCheckRemoval.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationEE5valueEv Line | Count | Source | 318 | 16 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEE5valueEv Line | Count | Source | 318 | 121 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15EnumElementDeclEE5valueEv _ZNR4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEE5valueEv Line | Count | Source | 318 | 61 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEE5valueEv Line | Count | Source | 318 | 639 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_jEEEEE5valueEv Line | Count | Source | 318 | 13 | T &value() & { return Storage.value(); } |
SILMem2Reg.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEE5valueEv Line | Count | Source | 318 | 24 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEE5valueEv Line | Count | Source | 318 | 998 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift22LoadOwnershipQualifierEE5valueEv Line | Count | Source | 318 | 2.10k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift13LoadOperationEE5valueEv Line | Count | Source | 318 | 163 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift11SILFunctionENS3_15SubstitutionMapEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalI17WellKnownFunctionE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN21LexicalDestroyFolding5MatchEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10ModuleDeclEE5valueEv Unexecuted instantiation: APIDigesterData.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_115DiffItemKeyKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api15APIDiffItemKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift3ide3api11SDKNodeKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api14NodeAnnotationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api13SpecialCaseIdEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift6markup9ParagraphEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift6markup12ReturnsFieldEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift6markup11ThrowsFieldEE5valueEv Unexecuted instantiation: Formatting.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_113IndentContextEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide17ResolvedRangeInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10AccessKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift6driver3Job9ConditionEbEEE5valueEv _ZNR4llvm8OptionalIiE5valueEv Line | Count | Source | 318 | 92.9k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift6driver20IncrementalJobAction9InputInfo6StatusEEEE5valueEv _ZNR4llvm8OptionalIN5clang13DarwinSDKInfoEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_6TripleEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift7options2IDEE5valueEv _ZNR4llvm8OptionalINS0_IN5swift6driver6Driver10DriverKindEEEE5valueEv Line | Count | Source | 318 | 5 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift6driver6Driver10DriverKindEE5valueEv Line | Count | Source | 318 | 5 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift6driver10OutputInfo7LTOKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift6driver10OutputInfo7LTOKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift6driver10OutputInfo11MSVCRuntimeEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS4_18ModuleDepGraphNodeEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11NullablePtrINS1_25fine_grained_dependencies18ModuleDepGraphNodeEEEE5valueEv _ZNR4llvm8OptionalIN5swift19DefaultArgumentKindEE5valueEv Line | Count | Source | 318 | 4.15k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16BuiltinMacroKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift29SILParameterDifferentiabilityEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift26SILResultDifferentiabilityEE5valueEv _ZNR4llvm8OptionalIN5swift16ResultConventionEE5valueEv Line | Count | Source | 318 | 220 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift15RequirementKindEE5valueEv Line | Count | Source | 318 | 1.46k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalI20LayoutConstraintKindE5valueEv Line | Count | Source | 318 | 14 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift12ReadImplKindEE5valueEv Line | Count | Source | 318 | 374 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift13WriteImplKindEE5valueEv Line | Count | Source | 318 | 374 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift17ReadWriteImplKindEE5valueEv Line | Count | Source | 318 | 374 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16SILCoroutineKindEE5valueEv Line | Count | Source | 318 | 267 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift19ParameterConventionEE5valueEv Line | Count | Source | 318 | 817 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23StableSerializationPath12ExternalPath13ComponentKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang14IdentifierInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang22OverloadedOperatorKindEE5valueEv _ZNR4llvm8OptionalIN5swift17StringLiteralInst8EncodingEE5valueEv Line | Count | Source | 318 | 488 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14SILVTableEntry4KindEE5valueEv Line | Count | Source | 318 | 10 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14ImportedModuleEE5valueEv Line | Count | Source | 318 | 34 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10ImportKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11CommentInfoEE5valueEv _ZNR4llvm8OptionalIN5swift10ModuleDecl16ImportFilterKindEE5valueEv Line | Count | Source | 318 | 213 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11LibraryKindEE5valueEv Line | Count | Source | 318 | 71 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20ModuleDependencyInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang11ConceptDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang14IdentifierInfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang12TemplateNameEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang7TagDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang20TemplateTypeParmDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift4DeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang4TypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift11DeclContextEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift18GenericEnvironmentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PackConformanceEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift9SILLayoutEE5valueEv _ZNR4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEE5valueEv Line | Count | Source | 318 | 282 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang13CXXRecordDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang13CXXRecordDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang11ConceptDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang4DeclEE5valueEv _ZNR4llvm8OptionalIPKN5clang4DeclEE5valueEv Line | Count | Source | 318 | 102 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang4ExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang4ExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang12FunctionDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang12FunctionDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang9NamedDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang9NamedDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang18NamespaceAliasDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang18NamespaceAliasDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang13NamespaceDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang13NamespaceDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang16ObjCProtocolDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang16ObjCProtocolDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang17ObjCTypeParamDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang17ObjCTypeParamDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang4StmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang4StmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang7TagDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang12TemplateDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang12TemplateDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang24TemplateTemplateParmDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang24TemplateTemplateParmDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang20TemplateTypeParmDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang15UsingShadowDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang15UsingShadowDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang9ValueDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang9ValueDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24SerializedModuleBaseNameEE5valueEv _ZNR4llvm8OptionalIN5swift10SILLinkageEE5valueEv Line | Count | Source | 318 | 440 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift7CanTypeEE5valueEv Line | Count | Source | 318 | 125 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift15SubstitutionMapEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering18AbstractionPatternEE5valueEv _ZNR4llvm8OptionalIN5swift24DifferentiationThunkKindEE5valueEv Line | Count | Source | 318 | 14 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift18SILDynamicCastKind7innertyEE5valueEv Line | Count | Source | 318 | 1.61k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift18SILDynamicCastKindEE5valueEv Line | Count | Source | 318 | 41 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift20SILModuleConventionsEE5valueEv Line | Count | Source | 318 | 954 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift18ValueOwnershipKindEE5valueEv Line | Count | Source | 318 | 19 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23KeyPathPatternComponentEE5valueEv Unexecuted instantiation: SILProfiler.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_111CounterExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16SILSymbolVisitor11DynamicKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift13OwnershipKind7innertyEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13OwnershipKind7innertyEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14AnyFunctionRefEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13CapturedValueEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEE5valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNR4llvm8OptionalINS0_IZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEE5valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNR4llvm8OptionalIZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20AccessRepresentation4KindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift17AccessStorageCastEE5valueEv _ZNR4llvm8OptionalIN5swift10ProjectionEE5valueEv Line | Count | Source | 318 | 151 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: PrunedLiveness.cpp:_ZNR4llvm8OptionalINS0_IZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEE5valueEv Unexecuted instantiation: PrunedLiveness.cpp:_ZNR4llvm8OptionalIZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindE5valueEv _ZNR4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE5valueEv Line | Count | Source | 318 | 161 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift21LinearLifetimeChecker5ErrorEE5valueEv Line | Count | Source | 318 | 458 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFvPN5swift13SILBasicBlockEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFvPN5swift7OperandEEEEE5valueEv _ZNR4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEE5valueEv Line | Count | Source | 318 | 60 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test12BoolArgumentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test12UIntArgumentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test8ArgumentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test14StringArgumentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift12AccessorKindEEEE5valueEv _ZNR4llvm8OptionalINS0_IN5swift18SILInstructionKindEEEE5valueEv Line | Count | Source | 318 | 27 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift23OpenedExistentialAccessEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23OpenedExistentialAccessEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19AssignByWrapperInst4ModeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16AssignOrInitInst4ModeEE5valueEv _ZNR4llvm8OptionalINS0_IN5swift10SILLinkageEEEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift18SILInstructionKindEE5valueEv Line | Count | Source | 318 | 27 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift34MarkUnresolvedReferenceBindingInst4KindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift22LoadOwnershipQualifierEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift19CastConsumptionKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19CastConsumptionKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift23StoreOwnershipQualifierEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift24AssignOwnershipQualifierEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23StoreOwnershipQualifierEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24AssignOwnershipQualifierEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9SILParser19UnresolvedValueNameEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8coverage7CounterEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEE5valueEv _ZNR4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEE5valueEv Line | Count | Source | 318 | 234 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints16SelectedOverloadEE5valueEv Line | Count | Source | 318 | 44 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift13CaseLabelItemEE5valueEv _ZNR4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEE5valueEv Line | Count | Source | 318 | 17 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8ExprKindEE5valueEv Unexecuted instantiation: CSSyntacticElement.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_123SyntacticElementContextEE5valueEv Unexecuted instantiation: CSGen.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEE5valueEv Unexecuted instantiation: CSRanking.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_121TypeBindingsToCompareEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8TypeBaseEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints17CompletionArgInfoEE5valueEv _ZNR4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEE5valueEv Line | Count | Source | 318 | 576 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: CSSimplify.cpp:_ZNR4llvm8OptionalINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS3_16TypeVariableTypeENS3_4TypeENS3_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints25SingleValueStmtBranchKindEE5valueEv _ZNR4llvm8OptionalIN5swift11constraints18MemberLookupResult14UnviableReasonEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIN5swift10IdentifierEEEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints9ScoreKindEE5valueEv Line | Count | Source | 318 | 1.44k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints14ConstraintKindEE5valueEv Line | Count | Source | 318 | 2.12k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints19TypeVariableBindingEE5valueEv Line | Count | Source | 318 | 336 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEE5valueEv Line | Count | Source | 318 | 2.19k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints18ConjunctionElementEE5valueEv CSStep.cpp:_ZNR4llvm8OptionalIZN5swift11constraints13ComponentStep4takeEbE8StepKindE5valueEv Line | Count | Source | 318 | 106 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints9inference10BindingSetEE5valueEv Line | Count | Source | 318 | 98 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEE5valueEv Line | Count | Source | 318 | 205 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints11FixBehaviorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__15tupleIJN5swift21ContextualTypePurposeENS3_4TypeES5_EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJNS1_4TypeEEEEE5valueEv Unexecuted instantiation: CSDiagnostics.cpp:_ZNR4llvm8OptionalIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEE5valueEv _ZNR4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEE5valueEv Line | Count | Source | 318 | 9.04k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints7FixKindEE5valueEv _ZNR4llvm8OptionalIN5swift11constraints5ScoreEE5valueEv Line | Count | Source | 318 | 259 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift12LookupResultEE5valueEv Line | Count | Source | 318 | 110 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints14OverloadChoiceEE5valueEv _ZNR4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEE5valueEv Line | Count | Source | 318 | 658 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11DeclNameRefEE5valueEv _ZNR4llvm8OptionalIN5swift21ContextualTypePurposeEE5valueEv Line | Count | Source | 318 | 112 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift26MagicIdentifierLiteralExpr4KindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8ArgumentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19ExportabilityReasonEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEE5valueEv _ZNR4llvm8OptionalI35AbstractFunctionDeclLookupErrorKindE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJbNS1_4TypeEEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20UnavailabilityReasonEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18DiagnosticBehaviorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIbbEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12VarRefUseEnvEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22DispatchQueueOperationEE5valueEv TypeCheckConcurrency.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_126MemberIsolationPropagationEE5valueEv Line | Count | Source | 318 | 579 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift22DispatchQueueOperationEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15ReferencedActorEE5valueEv _ZNR4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEE5valueEv Line | Count | Source | 318 | 113 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: TypeCheckDecl.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_121ImplicitlyFinalReasonEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22AutomaticEnumValueKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJjNS1_8DeclNameENS1_12ObjCSelectorEEEEE5valueEv _ZNR4llvm8OptionalIN5swift18StaticSpellingKindEE5valueEv Line | Count | Source | 318 | 2.89k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift10ObjCReasonEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ParamDeclEE5valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_17ContextEE5valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10EffectKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11SourceRangeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23ExternalMacroDefinitionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15CheckedCastKindEE5valueEv _ZNR4llvm8OptionalIN5swift18ConformanceCheckerEE5valueEv Line | Count | Source | 318 | 22 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18InFlightDiagnosticEE5valueEv _ZNR4llvm8OptionalIN5swift14ActorIsolationEE5valueEv Line | Count | Source | 318 | 117 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNR4llvm8OptionalIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS1_9ClassDeclEE16UnstableNameKindE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8DeclNameEE5valueEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionEE5valueEv _ZNR4llvm8OptionalINSt3__14pairIN5swift11AccessScopeEbEEE5valueEv Line | Count | Source | 318 | 106 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16RequirementMatchEE5valueEv Line | Count | Source | 318 | 426 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11constraints8SolutionEE5valueEv Line | Count | Source | 318 | 426 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift11AccessScopeEE5valueEv Line | Count | Source | 318 | 391 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEE5valueEv _ZNR4llvm8OptionalIN5swift11RequirementEE5valueEv Line | Count | Source | 318 | 2.10k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift4TypeEE5valueEv Line | Count | Source | 318 | 347k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEE5valueEv Line | Count | Source | 318 | 174 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25RegexCaptureStructureCodeEE5valueEv TypeCheckSwitchStmt.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEE5valueEv Line | Count | Source | 318 | 138 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS0_IN5swift29SILFunctionTypeRepresentationEEEE5valueEv Line | Count | Source | 318 | 23 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEE5valueEv Line | Count | Source | 318 | 557 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14TypeAttributes10ConventionEE5valueEv Line | Count | Source | 318 | 33 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift26FunctionTypeRepresentationEEEE5valueEv _ZNR4llvm8OptionalIN5swift26FunctionTypeRepresentationEE5valueEv Line | Count | Source | 318 | 54 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16FunctionTypeReprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift13SanitizerKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_24SanitizerCoverageOptions4TypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13SanitizerKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10IdentifierEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallStringILj128EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang12FileEntryRefEE5valueEv _ZNR4llvm8OptionalIN5clang17DirectoryEntryRefEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5clang6ModuleEE5valueEv Line | Count | Source | 318 | 46 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12DeclBaseNameEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignErrorConventionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8importer12ImportedNameEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang13SwiftAttrAttrEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignAsyncConventionEE5valueEv _ZNR4llvm8OptionalIN5swift19CtorInitializerKindEE5valueEv Line | Count | Source | 318 | 329 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift4DeclEE5valueEv Line | Count | Source | 318 | 57 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift12PlatformKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12PlatformKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignErrorConvention4KindEE5valueEv Unexecuted instantiation: ImportType.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_112ImportResultEE5valueEv _ZNR4llvm8OptionalIN5swift18MappedTypeNameKindEE5valueEv Line | Count | Source | 318 | 10 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang8EnumDeclEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang8QualTypeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEE5valueEv _ZNR4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEE5valueEv Line | Count | Source | 318 | 37 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21EffectiveClangContextEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3tokEE5valueEv Unexecuted instantiation: ParseDecl.cpp:_ZNR4llvm8OptionalIZN5swift6Parser33parseStorageRestrictionsAttributeENS1_9SourceLocES3_E10AccessKindE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJNS_9StringRefES3_EEEE5valueEv Unexecuted instantiation: ParseDecl.cpp:_ZNR4llvm8OptionalIZN5swift6Parser33parseExtendedAvailabilitySpecListENS1_9SourceLocES3_NS_9StringRefEE3$_4E5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14SpecializeAttr18SpecializationKindEE5valueEv _ZNR4llvm8OptionalIN5swift21DifferentiabilityKindEE5valueEv Line | Count | Source | 318 | 407 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift11AccessLevelEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift9MacroRoleEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift27MacroIntroducedDeclNameKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift27MacroIntroducedDeclNameKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10InlineKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16OptimizationModeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15ExclusivityAttr4ModeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18ReferenceOwnershipEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15NonSendableKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift13AssociativityEEEE5valueEv _ZNR4llvm8OptionalIN5swift13AssociativityEE5valueEv Line | Count | Source | 318 | 84 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20AvailabilitySpecKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21PlatformConditionKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21PlatformConditionKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15TuplePatternEltEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift5TokenENS1_9allocatorIS4_EEEEE5valueEv _ZNR4llvm8OptionalINS_8ArrayRefIN5swift7ASTNodeEEEE5valueEv Line | Count | Source | 318 | 114 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19PatternBindingStateEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21KnownFoundationEntityEEEE5valueEv _ZNR4llvm8OptionalIN5swift22MetatypeRepresentationEE5valueEv Line | Count | Source | 318 | 802 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift13SILResultInfoEE5valueEv Line | Count | Source | 318 | 929 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24UnexpectedClangTypeErrorEE5valueEv _ZNR4llvm8OptionalIN5swift4UUIDEE5valueEv Line | Count | Source | 318 | 12 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25ForeignRepresentationInfoEE5valueEv _ZNR4llvm8OptionalIN5swift18ClangTypeConverterEE5valueEv Line | Count | Source | 318 | 13 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift38PropertyWrapperSynthesizedPropertyKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang23HeaderIncludeFormatKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15TypeLookupErrorEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle30ImplParameterDifferentiabilityEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle23ImplParameterConventionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle27ImplResultDifferentiabilityEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle20ImplResultConventionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle26ImplMetatypeRepresentationEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift8Demangle10ASTBuilder17ForeignModuleKindEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_I20LayoutConstraintKindEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13ClangTypeKindEE5valueEv _ZNR4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEE5valueEv Line | Count | Source | 318 | 27 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIcE5valueEv Line | Count | Source | 318 | 212 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S8_EEEEE5valueEv ASTPrinter.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_111TypePrinterEE5valueEv Line | Count | Source | 318 | 58 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9MacroRoleEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9SourceLocEE5valueEv _ZNR4llvm8OptionalIN5swift15CharSourceRangeEE5valueEv Line | Count | Source | 318 | 32.9k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ErrorExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14NilLiteralExprEE5valueEv _ZNR4llvm8OptionalIPN5swift18BooleanLiteralExprEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift18IntegerLiteralExprEE5valueEv Line | Count | Source | 318 | 53 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16FloatLiteralExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17StringLiteralExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift26MagicIdentifierLiteralExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift29InterpolatedStringLiteralExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16RegexLiteralExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17ObjectLiteralExprEE5valueEv _ZNR4llvm8OptionalIPN5swift21DiscardAssignmentExprEE5valueEv Line | Count | Source | 318 | 6 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift11DeclRefExprEE5valueEv Line | Count | Source | 318 | 266 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12SuperRefExprEE5valueEv _ZNR4llvm8OptionalIPN5swift8TypeExprEE5valueEv Line | Count | Source | 318 | 58 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift27OtherConstructorDeclRefExprEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift24DotSyntaxBaseIgnoredExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21OverloadedDeclRefExprEE5valueEv _ZNR4llvm8OptionalIPN5swift21UnresolvedDeclRefExprEE5valueEv Line | Count | Source | 318 | 188 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift13MemberRefExprEE5valueEv Line | Count | Source | 318 | 109 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift13SubscriptExprEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20DynamicMemberRefExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20DynamicSubscriptExprEE5valueEv _ZNR4llvm8OptionalIPN5swift24UnresolvedSpecializeExprEE5valueEv Line | Count | Source | 318 | 8 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20UnresolvedMemberExprEE5valueEv _ZNR4llvm8OptionalIPN5swift17UnresolvedDotExprEE5valueEv Line | Count | Source | 318 | 13 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift12SequenceExprEE5valueEv Line | Count | Source | 318 | 38 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift9ParenExprEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11DotSelfExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9AwaitExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10BorrowExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift31UnresolvedMemberChainResultExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8CopyExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ConsumeExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift7TryExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12ForceTryExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15OptionalTryExprEE5valueEv _ZNR4llvm8OptionalIPN5swift9TupleExprEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ArrayExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14DictionaryExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22KeyPathApplicationExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16TupleElementExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15CaptureListExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ClosureExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15AutoClosureExprEE5valueEv _ZNR4llvm8OptionalIPN5swift9InOutExprEE5valueEv Line | Count | Source | 318 | 48 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19VarargExpansionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17PackExpansionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PackElementExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19MaterializePackExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15DynamicTypeExprEE5valueEv _ZNR4llvm8OptionalIPN5swift27RebindSelfInConstructorExprEE5valueEv Line | Count | Source | 318 | 1 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15OpaqueValueExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift35PropertyWrapperValuePlaceholderExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift26AppliedPropertyWrapperExprEE5valueEv _ZNR4llvm8OptionalIPN5swift19DefaultArgumentExprEE5valueEv Line | Count | Source | 318 | 21 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16BindOptionalExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22OptionalEvaluationExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14ForceValueExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19OpenExistentialExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift28MakeTemporarilyEscapableExprEE5valueEv _ZNR4llvm8OptionalIPN5swift8CallExprEE5valueEv Line | Count | Source | 318 | 96 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PrefixUnaryExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16PostfixUnaryExprEE5valueEv _ZNR4llvm8OptionalIPN5swift10BinaryExprEE5valueEv Line | Count | Source | 318 | 17 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift17DotSyntaxCallExprEE5valueEv Line | Count | Source | 318 | 33 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift22ConstructorRefCallExprEE5valueEv Line | Count | Source | 318 | 23 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift8LoadExprEE5valueEv Line | Count | Source | 318 | 3 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21ABISafeConversionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20DestructureTupleExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift28UnresolvedTypeConversionExprEE5valueEv _ZNR4llvm8OptionalIPN5swift22FunctionConversionExprEE5valueEv Line | Count | Source | 318 | 3 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift31CovariantFunctionConversionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift29CovariantReturnConversionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22MetatypeConversionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift30CollectionUpcastConversionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ErasureExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22AnyHashableErasureExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16BridgeToObjCExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18BridgeFromObjCExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift29ConditionalBridgeFromObjCExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17DerivedToBaseExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20ArchetypeToSuperExprEE5valueEv _ZNR4llvm8OptionalIPN5swift22InjectIntoOptionalExprEE5valueEv Line | Count | Source | 318 | 5 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift25ClassMetatypeToObjectExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift31ExistentialMetatypeToObjectExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift28ProtocolMetatypeToObjectExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18InOutToPointerExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18ArrayToPointerExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19StringToPointerExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20PointerToPointerExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift27ForeignObjectConversionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift23UnevaluatedInstanceExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22UnderlyingToOpaqueExprEE5valueEv _ZNR4llvm8OptionalIPN5swift26DifferentiableFunctionExprEE5valueEv Line | Count | Source | 318 | 3 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18LinearFunctionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift41DifferentiableFunctionExtractOriginalExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift33LinearFunctionExtractOriginalExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift34LinearToDifferentiableFunctionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21ForcedCheckedCastExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift26ConditionalCheckedCastExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6IsExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10CoerceExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ArrowExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11TernaryExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14EnumIsCaseExprEE5valueEv _ZNR4llvm8OptionalIPN5swift10AssignExprEE5valueEv Line | Count | Source | 318 | 40 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18CodeCompletionExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21UnresolvedPatternExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19LazyInitializerExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21EditorPlaceholderExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16ObjCSelectorExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11KeyPathExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19SingleValueStmtExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14KeyPathDotExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10OneWayExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift7TapExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12TypeJoinExprEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18MacroExpansionExprEE5valueEv _ZNR4llvm8OptionalIPN5swift10ReturnStmtEE5valueEv Line | Count | Source | 318 | 137 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8ThenStmtEE5valueEv _ZNR4llvm8OptionalIPN5swift9YieldStmtEE5valueEv Line | Count | Source | 318 | 25 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9DeferStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6IfStmtEE5valueEv _ZNR4llvm8OptionalIPN5swift9GuardStmtEE5valueEv Line | Count | Source | 318 | 2 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9WhileStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6DoStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11DoCatchStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15RepeatWhileStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ForEachStmtEE5valueEv _ZNR4llvm8OptionalIPN5swift10SwitchStmtEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift8CaseStmtEE5valueEv Line | Count | Source | 318 | 12 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9BreakStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12ContinueStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15FallthroughStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8FailStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ThrowStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11DiscardStmtEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PoundAssertStmtEE5valueEv _ZNR4llvm8OptionalIPN5swift12ParenPatternEE5valueEv Line | Count | Source | 318 | 10 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift12TuplePatternEE5valueEv Line | Count | Source | 318 | 8 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift10AnyPatternEE5valueEv Line | Count | Source | 318 | 4 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift12TypedPatternEE5valueEv Line | Count | Source | 318 | 855 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift14BindingPatternEE5valueEv Line | Count | Source | 318 | 8 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9IsPatternEE5valueEv _ZNR4llvm8OptionalIPN5swift18EnumElementPatternEE5valueEv Line | Count | Source | 318 | 19 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19OptionalSomePatternEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11BoolPatternEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ExprPatternEE5valueEv _ZNR4llvm8OptionalIPN5swift4StmtEE5valueEv Line | Count | Source | 318 | 9.30k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift7PatternEE5valueEv Line | Count | Source | 318 | 11.2k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift12ArgumentListEE5valueEv Line | Count | Source | 318 | 9.37k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift12TypeAttrKindEE5valueEv Line | Count | Source | 318 | 126 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift12DeclAttrKindEE5valueEv Line | Count | Source | 318 | 105 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16GenericSignatureEE5valueEv Line | Count | Source | 318 | 88.5k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift11IndexSubsetEE5valueEv Line | Count | Source | 318 | 330 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS0_IN5swift30AutoDiffDerivativeFunctionKind7innertyEEEE5valueEv Line | Count | Source | 318 | 12 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEE5valueEv Line | Count | Source | 318 | 12 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift36DifferentiabilityWitnessFunctionKind7innertyEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEE5valueEv _ZNR4llvm8OptionalINS_12VersionTupleEE5valueEv Line | Count | Source | 318 | 62 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift19AvailabilityContextEE5valueEv Line | Count | Source | 318 | 334 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_14AtomicOrderingEE5valueEv ClangTypeConverter.cpp:_ZNR4llvm8OptionalIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS1_16BoundGenericTypeEE10StructKindE5valueEv Line | Count | Source | 318 | 8 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEE5valueEv Line | Count | Source | 318 | 2.34k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift18ExternalSourceLocsEE5valueEv Line | Count | Source | 318 | 185 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift16GenericParamListEE5valueEv Line | Count | Source | 318 | 53.8k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift15NominalTypeDeclEE5valueEv Line | Count | Source | 318 | 24 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEE5valueEv Line | Count | Source | 318 | 14 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift19PatternBindingEntryEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12AccessorDeclEE5valueEv _ZNR4llvm8OptionalIN5swift19OpaqueReadOwnershipEE5valueEv Line | Count | Source | 318 | 766 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_13TinyPtrVectorIPN5swift9ValueDeclEEEE5valueEv Line | Count | Source | 318 | 36.6k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift20ImplicitMemberActionEE5valueEv Line | Count | Source | 318 | 22 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift14DestructorDeclEE5valueEv Line | Count | Source | 318 | 490 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIPN5swift12ProtocolDeclEEEE5valueEv Line | Count | Source | 318 | 7.16k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIPN5swift9ValueDeclEEEE5valueEv Line | Count | Source | 318 | 202 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift20RequirementSignatureEE5valueEv Line | Count | Source | 318 | 10.1k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift15StorageImplInfoEE5valueEv Line | Count | Source | 318 | 5.09k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12ObjCSelectorEE5valueEv _ZNR4llvm8OptionalIPN5swift12NamedPatternEE5valueEv Line | Count | Source | 318 | 945 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14ParamSpecifierEE5valueEv Line | Count | Source | 318 | 17.5k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11InitializerEE5valueEv _ZNR4llvm8OptionalIPN5swift4ExprEE5valueEv Line | Count | Source | 318 | 64.7k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift18BodyAndFingerprintEE5valueEv Line | Count | Source | 318 | 63.7k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift9BraceStmtEE5valueEv Line | Count | Source | 318 | 555 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift14SelfAccessKindEE5valueEv Line | Count | Source | 318 | 18.8k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalINSt3__15tupleIJEEEE5valueEv Line | Count | Source | 318 | 18 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19GeneratedSourceInfoEE5valueEv _ZNR4llvm8OptionalIN5swift14DiagnosticInfoEE5valueEv Line | Count | Source | 318 | 88 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6markup10ParamFieldEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10RawCommentEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25fine_grained_dependencies8NodeKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25fine_grained_dependencies10DeclAspectEE5valueEv _ZNR4llvm8OptionalIN5swift23SourceFileParsingResultEE5valueEv Line | Count | Source | 318 | 228 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift12StableHasherEE5valueEv Line | Count | Source | 318 | 135 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18ArtificialMainKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift10ModuleDeclENS3_10IdentifierEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang10CASOptionsEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20ModuleDependencyKindEE5valueEv _ZNR4llvm8OptionalIPN5swift9ClassDeclEE5valueEv Line | Count | Source | 318 | 25.5k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ExprPatternMatchResultEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIN5swift10IdentifierENS2_12PluginLoader11PluginEntryENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18TypeWitnessAndDeclEE5valueEv _ZNR4llvm8OptionalIN5swift7WitnessEE5valueEv Line | Count | Source | 318 | 216 | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIPN5swift9rewriting11PropertyBagEE5valueEv Line | Count | Source | 318 | 27.9k | T &value() & { return Storage.value(); } |
_ZNR4llvm8OptionalIN5swift9rewriting6SymbolEE5valueEv Line | Count | Source | 318 | 16.7k | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift9rewriting10DebugFlagsEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9rewriting10DebugFlagsEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIN5swift9rewriting4TermEEEE5valueEv _ZNR4llvm8OptionalIN5swift22ProtocolConformanceRefEE5valueEv Line | Count | Source | 318 | 442 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25PrecedenceGroupDescriptor13PathDirectionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_14raw_fd_ostreamEE5valueEv _ZNR4llvm8OptionalIN5swift10file_types2IDEE5valueEv Line | Count | Source | 318 | 104 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift7FeatureEEEE5valueEv _ZNR4llvm8OptionalINS0_INS_9StringRefEEEE5valueEv Line | Count | Source | 318 | 980 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefINS_9StringRefEEEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEE5valueEv _ZNR4llvm8OptionalINSt3__16vectorIiNS1_9allocatorIiEEEEE5valueEv Line | Count | Source | 318 | 6 | T &value() & { return Storage.value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16BlockListKeyKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15BlockListActionEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle4Node4KindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle16ValueWitnessKindEE5valueEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle10DirectnessEE5valueEv |
319 | | LLVM_DEPRECATED("Use value instead.", "value") T &getValue() & { |
320 | | return Storage.value(); |
321 | | } |
322 | | |
323 | 5.03M | constexpr explicit operator bool() const { return has_value(); }_ZNK4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEcvbEv Line | Count | Source | 323 | 4.74k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift10DiagnosticEEcvbEv Line | Count | Source | 323 | 114 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_5AlignEEcvbEv Line | Count | Source | 323 | 74 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIxEcvbEv _ZNK4llvm8OptionalIjEcvbEv Line | Count | Source | 323 | 823k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalImEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang12FileEntryRefEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalItEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEEcvbEv _ZNK4llvm8OptionalINS_9StringRefEEcvbEv Line | Count | Source | 323 | 28.2k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6DIFile12ChecksumInfoIPNS_8MDStringEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_8MDStringEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13DIDerivedType11PtrAuthDataEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12DIExpression12FragmentInfoEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12RoundingModeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_2fp17ExceptionBehaviorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11FingerprintEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEEcvbEv _ZNK4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift12ObjCSelectorEEcvbEv Line | Count | Source | 323 | 25 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEcvbEv Line | Count | Source | 323 | 46 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIbEcvbEv Line | Count | Source | 323 | 233k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang11SourceRangeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang15CharSourceRangeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang9FixItHintEEcvbEv _ZNK4llvm8OptionalIN5clang15NullabilityKindEEcvbEv Line | Count | Source | 323 | 82 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEEEcvbEv _ZNK4llvm8OptionalIN5swift17KnownProtocolKindEEcvbEv Line | Count | Source | 323 | 25.4k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEEcvbEv Line | Count | Source | 323 | 148 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8ArgumentEEcvbEv _ZNK4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEEcvbEv Line | Count | Source | 323 | 97 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift15DiagnosticQueueEEcvbEv Line | Count | Source | 323 | 28.4k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift7SILTypeEEcvbEv Line | Count | Source | 323 | 9.66k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11SILLocationEEcvbEv Line | Count | Source | 323 | 22.0k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift16SILDebugVariableEEcvbEv Line | Count | Source | 323 | 30.3k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift16FixedOperandListILj1EEEEcvbEv Line | Count | Source | 323 | 2.53k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift15EnumElementDeclEEcvbEv Line | Count | Source | 323 | 3.07k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18ReferenceOwnershipEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift14ProfileCounterEEEEcvbEv Line | Count | Source | 323 | 130 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_15MemoryBufferRefEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_18ThreadPoolStrategyEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_3cas5CASIDEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKcEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12DenormalMode16DenormalModeKindEEcvbEv _ZNK4llvm8OptionalIPKN5swift13SemanticsAttrEEcvbEv Line | Count | Source | 323 | 321 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift13DeclAttributeEEcvbEv Line | Count | Source | 323 | 15.1k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11AccessLevelEEcvbEv Line | Count | Source | 323 | 81.1k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift12EnumCaseDeclEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift8CaseStmtEEcvbEv Line | Count | Source | 323 | 151 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19PatternBindingState4KindEEcvbEv _ZNK4llvm8OptionalIyEcvbEv Line | Count | Source | 323 | 769 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift8SILValueEEcvbEv Line | Count | Source | 323 | 19.7k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift13EndBorrowInstEEcvbEv _ZNK4llvm8OptionalIPN5swift13EndAccessInstEEcvbEv Line | Count | Source | 323 | 30 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11LangOptions23ASTVerifierOverrideKindEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7FeatureEEcvbEv _ZNK4llvm8OptionalIN5swift21CopyPropagationOptionEEcvbEv Line | Count | Source | 323 | 17 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_7remarks14RemarkLocationEEcvbEv _ZNK4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEEcvbEv Line | Count | Source | 323 | 19 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_9CodeModel5ModelEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25fine_grained_dependencies18SourceFileDepGraphEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKNS_8FunctionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13FastMathFlagsEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_5ValueEEcvbEv _ZNK4llvm8OptionalINS_6TripleEEcvbEv Line | Count | Source | 323 | 910 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6object12VersionEntryEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIdEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIDnEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_4wasm14WasmSymbolTypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_4wasm14WasmGlobalTypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIhEcvbEv Unexecuted instantiation: swift_api_digester_main.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift3ide3api7SDKNodeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIN5clang19TemplateArgumentLocEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang4Sema20ImmediateDiagBuilderEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang14SourceLocationEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4sema21TemplateDeductionInfoEEcvbEv Unexecuted instantiation: swift_cache_tool_main.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_120SwiftCacheToolActionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_3cas9ObjectRefEEcvbEv _ZNK4llvm8OptionalIN5swift7version7VersionEEcvbEv Line | Count | Source | 323 | 16 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEcvbEv Line | Count | Source | 323 | 224 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift20ModuleDependencyInfoEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22SwiftDependencyTrackerEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_3orc15SymbolStringPtrEPNS3_8JITDylibEEEEcvbEv Unexecuted instantiation: Index.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_19MappedLocEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16OptionalTypeKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12FunctionTypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24LoweredFunctionSignatureEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24LoweredFunctionSignature16DirectResultTypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES4_EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19ClangRepresentationEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEEcvbEv _ZNK4llvm8OptionalINSt3__13setINS_9StringRefENS1_4lessIS3_EENS1_9allocatorIS3_EEEEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift24FrontendInputsAndOutputsEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEEEcvbEv _ZNK4llvm8OptionalIN5swift19OutputFilesComputerEEcvbEv Line | Count | Source | 323 | 11 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEEcvbEv Line | Count | Source | 323 | 22 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift24SupplementaryOutputPathsEEcvbEv Line | Count | Source | 323 | 11 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZNK4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift27UnavailableDeclOptimizationEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift27UnavailableDeclOptimizationEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift17StrictConcurrencyEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17StrictConcurrencyEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift28AccessNoteDiagnosticBehaviorEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16ConcurrencyModelEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IbEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21DestroyHoistingOptionEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21CopyPropagationOptionEEEEcvbEv _ZNK4llvm8OptionalIN5swift21DestroyHoistingOptionEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift16JITDebugArtifactEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16JITDebugArtifactEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift16IRGenLLVMLTOKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16IRGenLLVMLTOKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFvvEEEEcvbEv DiagnosticVerifier.cpp:_ZNK4llvm8OptionalIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnEcvbEv Line | Count | Source | 323 | 12 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift15LineColumnRangeEEcvbEv Line | Count | Source | 323 | 6 | constexpr explicit operator bool() const { return has_value(); } |
DiagnosticVerifier.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEEcvbEv Line | Count | Source | 323 | 42 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15AccessNotesFileEEcvbEv _ZNK4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEEcvbEv Line | Count | Source | 323 | 124 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13serialization6StatusEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang3cas21CompileJobCacheResult6OutputEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift3ide3api15SDKNodeDeclTypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift3ide3api11SDKNodeDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift3ide3api7KeyKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api7KeyKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api11SDKNodeKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8DeclKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift8DeclKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift13AvailableAttrEEcvbEv _ZNK4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEEcvbEv Line | Count | Source | 323 | 161 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_13AtomicRMWInst5BinOpEEcvbEv _ZNK4llvm8OptionalIN5swift5irgen12StackAddressEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen7AddressEEcvbEv Line | Count | Source | 323 | 102 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift7SILTypeEEEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen11ClassLayoutEEcvbEv Line | Count | Source | 323 | 26 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPNS_8FunctionEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift27RestatedObjCConformanceAttrEEcvbEv _ZNK4llvm8OptionalIN5swift6Mangle10ASTMangler14SpecialContextEEcvbEv Line | Count | Source | 323 | 2.58k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18ClusteredBitVectorEEcvbEv Line | Count | Source | 323 | 5 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen9AtomicityEEcvbEv Line | Count | Source | 323 | 10 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen15FunctionPointerEEcvbEv Line | Count | Source | 323 | 26 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEcvbEv Line | Count | Source | 323 | 32 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen19TypeEntityReferenceEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TypeImportInfoINS_9StringRefEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen14FulfillmentMapEEcvbEv _ZNK4llvm8OptionalINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS5_12ConstantInitEEEEEcvbEv Line | Count | Source | 323 | 29 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_5APIntEEcvbEv Line | Count | Source | 323 | 1.05k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEEcvbEv Unexecuted instantiation: GenValueWitness.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetails12DirectResultEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18GenericRequirementEEcvbEv _ZNK4llvm8OptionalINS_3vfs10OutputFileEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
IRGen.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119SymbolSourcesToEmitEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEcvbEv Line | Count | Source | 323 | 158 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6VFInfoEEcvbEv _ZNK4llvm8OptionalIiEcvbEv Line | Count | Source | 323 | 45 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIlNS_34PreservedCFGCheckerInstrumentation7BBGuardENS_12DenseMapInfoIlvEENS_6detail12DenseMapPairIlS3_EEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang19ASTSourceDescriptorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEEcvbEv _ZNK4llvm8OptionalINS_8TypeSizeEEcvbEv Line | Count | Source | 323 | 3 | constexpr explicit operator bool() const { return has_value(); } |
IRGenSIL.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112LoweredValueEEcvbEv Line | Count | Source | 323 | 96 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen13OperationCostEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen4SizeEEcvbEv Line | Count | Source | 323 | 46 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift14CanTypeWrapperINS3_15ExistentialTypeEEEjEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IhEEEcvbEv _ZNK4llvm8OptionalINS_10DataLayoutEEcvbEv Line | Count | Source | 323 | 163 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_5MachO13PackedVersionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen9AlignmentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_8ConstantEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift5irgen4SizeEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift5irgen9AlignmentEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IjEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen14YAMLModuleNodeEEcvbEv _ZNK4llvm8OptionalIN5swift7RT_KindEEcvbEv Line | Count | Source | 323 | 12.5k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18DiverseValueBufferINS1_8Lowering7CleanupEEEEcvbEv Line | Count | Source | 323 | 301 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering5ScopeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataEEcvbEv _ZNK4llvm8OptionalIN5swift10SILDeclRefEEcvbEv Line | Count | Source | 323 | 2.74k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12ProtocolDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8FuncDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18AssociatedTypeDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift7VarDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19ProtocolConformanceEEcvbEv _ZNK4llvm8OptionalIPKN5swift18DifferentiableAttrEEcvbEv Line | Count | Source | 323 | 6.06k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift14DerivativeAttrEEcvbEv Line | Count | Source | 323 | 5.68k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift9MacroRoleEEcvbEv Line | Count | Source | 323 | 93 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift8Lowering15FunctionSectionEEcvbEv Line | Count | Source | 323 | 18 | constexpr explicit operator bool() const { return has_value(); } |
SILGenApply.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_16CalleeEEcvbEv Line | Count | Source | 323 | 127 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift8Lowering18SpecializedEmitterEEcvbEv Line | Count | Source | 323 | 79 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIPN5swift4ExprELj2EEEEcvbEv _ZNK4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEEcvbEv Line | Count | Source | 323 | 10 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering10ConversionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering22ConversionPeepholeHintEEcvbEv _ZNK4llvm8OptionalIN5swift8Lowering12ManagedValueEEcvbEv Line | Count | Source | 323 | 5 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7ASTNodeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering20LogicalPathComponent13AccessStorageEEcvbEv _ZNK4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEEcvbEv Line | Count | Source | 323 | 16 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift20SILAccessEnforcementEEcvbEv Line | Count | Source | 323 | 54 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEEcvbEv _ZNK4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEEcvbEv Line | Count | Source | 323 | 505 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEcvbEv Line | Count | Source | 323 | 38.0k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift16MatchingSetFlagsEEcvbEv Line | Count | Source | 323 | 292 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEEcvbEv _ZNK4llvm8OptionalIN5swift14ProjectionPathEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13ArrayCallKindEEcvbEv Line | Count | Source | 323 | 2.80k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14SILVTableEntryEEcvbEv Line | Count | Source | 323 | 6 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift21EpilogueARCBlockStateEEcvbEv Line | Count | Source | 323 | 31 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEcvbEv Line | Count | Source | 323 | 74 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14CanTypeWrapperINS1_15SILFunctionTypeEEEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18MarkDependenceInstEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9ValueBase25DefiningInstructionResultEEcvbEv _ZNK4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEEcvbEv Line | Count | Source | 323 | 27 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEEcvbEv Line | Count | Source | 323 | 1.87k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13SILAccessKindEEcvbEv Line | Count | Source | 323 | 46 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15FixLifetimeInstEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12TryApplyInstEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9ApplySiteEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_16PartialApplyInstENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15DestroyAddrInstEEcvbEv DefiniteInitialization.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_16DIKindEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
DiagnoseStaticExclusivity.cpp:_ZNK4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEEcvbEv Line | Count | Source | 323 | 47 | constexpr explicit operator bool() const { return has_value(); } |
DiagnoseStaticExclusivity.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEEcvbEv Line | Count | Source | 323 | 42 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_117ConflictingAccessEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_14AutoDiffConfigEEEEcvbEv Line | Count | Source | 323 | 9 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16SubElementOffsetEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_7SILNodeENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS5_IPNS1_7OperandENS1_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS1_14FrozenMultiMapIS7_SC_NS_11SmallVectorISE_Lj8EEEE15PairToSecondEltEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift13SILBasicBlockEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEcvbEv PredictableMemOpt.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114AvailableValueEEcvbEv Line | Count | Source | 323 | 46 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ApplyIsolationCrossingEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9StoreInstEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13SymbolicValueEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13BorrowedValueEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16DestroyValueInstEEcvbEv _ZNK4llvm8OptionalIN5swift17FullApplySiteKind7innertyEEcvbEv Line | Count | Source | 323 | 899k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift17FullApplySiteKindEEcvbEv Line | Count | Source | 323 | 884k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13ApplySiteKind7innertyEEcvbEv Line | Count | Source | 323 | 345k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13ApplySiteKindEEcvbEv Line | Count | Source | 323 | 105k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8PassKindEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEEcvbEv Line | Count | Source | 323 | 139 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift14SILInstructionEEcvbEv Line | Count | Source | 323 | 63.9k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift23ConcreteExistentialInfoEEcvbEv Line | Count | Source | 323 | 649 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift16BuiltinValueKindEEcvbEv Line | Count | Source | 323 | 143k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalI20ConcreteArgumentCopyEcvbEv _ZNK4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15SILPrintContextEEcvbEv _ZNK4llvm8OptionalIN5swift21MarkUninitializedInst4KindEEcvbEv Line | Count | Source | 323 | 10 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift13CopyValueInstEEcvbEv Line | Count | Source | 323 | 11 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16DeallocStackInstEEcvbEv _ZNK4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEEcvbEv Line | Count | Source | 323 | 64.8k | constexpr explicit operator bool() const { return has_value(); } |
SILMem2Reg.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_120StorageStateTrackingINS1_10LiveValuesEEEEcvbEv Line | Count | Source | 323 | 86 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12siloptimizer7CleanupIvJPNS1_14SILInstructionEEEEEcvbEv _ZNK4llvm8OptionalINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_jEEEEEcvbEv Line | Count | Source | 323 | 7 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift15StoreBorrowInstEEcvbEv Line | Count | Source | 323 | 28 | constexpr explicit operator bool() const { return has_value(); } |
SILMem2Reg.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEEcvbEv Line | Count | Source | 323 | 27 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEEcvbEv Line | Count | Source | 323 | 998 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13BasicBlockSetEEcvbEv Line | Count | Source | 323 | 33 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift22LoadOwnershipQualifierEEcvbEv Line | Count | Source | 323 | 2.04k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift11SILFunctionENS3_15SubstitutionMapEEEEcvbEv _ZNK4llvm8OptionalI17WellKnownFunctionEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockES5_EEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN21LexicalDestroyFolding5MatchEEcvbEv SILInliner.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEEcvbEv Line | Count | Source | 323 | 820 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10ModuleDeclEEcvbEv Unexecuted instantiation: APIDigesterData.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_115DiffItemKeyKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api15APIDiffItemKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift3ide3api11SDKNodeKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api14NodeAnnotationEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api13SpecialCaseIdEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift6markup20LocalizationKeyFieldEEcvbEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5TokenEEcvbEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112TrailingInfoEEcvbEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17ReferenceMetaDataEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10AccessKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift6driver3Job9ConditionEbEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIbbEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift6driver20IncrementalJobAction9InputInfo6StatusEEEEcvbEv _ZNK4llvm8OptionalIN5clang13DarwinSDKInfoEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13OutputFileMapEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6driver10OutputInfo7LTOKindEEcvbEv _ZNK4llvm8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS0_IN5swift6driver6Driver10DriverKindEEEEcvbEv Line | Count | Source | 323 | 80 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift6driver10OutputInfo7LTOKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift6driver10OutputInfo11MSVCRuntimeEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11NullablePtrINS1_25fine_grained_dependencies18ModuleDepGraphNodeEEEEcvbEv _ZNK4llvm8OptionalIN5swift15RequirementKindEEcvbEv Line | Count | Source | 323 | 1.46k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalI20LayoutConstraintKindEcvbEv Line | Count | Source | 323 | 14 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEEcvbEv Line | Count | Source | 323 | 9.35k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift12ReadImplKindEEcvbEv Line | Count | Source | 323 | 374 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13WriteImplKindEEcvbEv Line | Count | Source | 323 | 374 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift17ReadWriteImplKindEEcvbEv Line | Count | Source | 323 | 374 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift19DefaultArgumentKindEEcvbEv Line | Count | Source | 323 | 4.15k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift19ParameterConventionEEcvbEv Line | Count | Source | 323 | 550 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift29SILParameterDifferentiabilityEEcvbEv _ZNK4llvm8OptionalIN5swift16ResultConventionEEcvbEv Line | Count | Source | 323 | 220 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift26SILResultDifferentiabilityEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23StableSerializationPath12ExternalPath13ComponentKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang14IdentifierInfoEEcvbEv _ZNK4llvm8OptionalIN5swift17StringLiteralInst8EncodingEEcvbEv Line | Count | Source | 323 | 488 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11CommentInfoEEcvbEv _ZNK4llvm8OptionalIN5swift10ModuleDecl16ImportFilterKindEEcvbEv Line | Count | Source | 323 | 213 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11LibraryKindEEcvbEv Line | Count | Source | 323 | 71 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift4TypeEjEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23ExpandedMacroDefinitionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang11ConceptDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang14IdentifierInfoEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang12TemplateNameEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang7TagDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang20TemplateTypeParmDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift4DeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang4TypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift11DeclContextEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift18GenericEnvironmentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PackConformanceEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift9SILLayoutEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang13CXXRecordDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang13CXXRecordDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang11ConceptDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4DeclEEcvbEv _ZNK4llvm8OptionalIPKN5clang4DeclEEcvbEv Line | Count | Source | 323 | 868 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4ExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang4ExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang12FunctionDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang12FunctionDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang9NamedDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang9NamedDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang18NamespaceAliasDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang18NamespaceAliasDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang13NamespaceDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang13NamespaceDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang16ObjCProtocolDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang16ObjCProtocolDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang17ObjCTypeParamDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang17ObjCTypeParamDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4StmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang4StmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang7TagDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang12TemplateDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang12TemplateDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang24TemplateTemplateParmDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang24TemplateTemplateParmDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang20TemplateTypeParmDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang15UsingShadowDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang15UsingShadowDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang9ValueDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang9ValueDeclEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24SerializedModuleBaseNameEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9SourceLocEEcvbEv _ZNK4llvm8OptionalIN5swift10SILLinkageEEcvbEv Line | Count | Source | 323 | 447 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift19AvailabilityContextEEcvbEv Line | Count | Source | 323 | 110 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift11EffectsAttrEEcvbEv Line | Count | Source | 323 | 148 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift10ExposeAttrEEcvbEv Line | Count | Source | 323 | 174 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift12TangentSpaceEEcvbEv Line | Count | Source | 323 | 359 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift7CanTypeEEcvbEv Line | Count | Source | 323 | 201 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift22ForeignAsyncConventionEEcvbEv Line | Count | Source | 323 | 5.36k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift22ForeignErrorConventionEEcvbEv Line | Count | Source | 323 | 6.57k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift15SubstitutionMapEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: SILFunctionType.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEEcvbEv _ZNK4llvm8OptionalIN5swift14AnyFunctionRefEEcvbEv Line | Count | Source | 323 | 505 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift24DifferentiationThunkKindEEcvbEv Line | Count | Source | 323 | 40 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEcvbEv Line | Count | Source | 323 | 3.22k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18SILDynamicCastKind7innertyEEcvbEv Line | Count | Source | 323 | 70.8k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18SILDynamicCastKindEEcvbEv Line | Count | Source | 323 | 69.2k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18ValueOwnershipKindEEcvbEv Line | Count | Source | 323 | 283 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift23KeyPathPatternComponentEEcvbEv Line | Count | Source | 323 | 49 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: SILProfiler.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEcvbEv _ZNK4llvm8OptionalIN5swift16SILSymbolVisitor11DynamicKindEEcvbEv Line | Count | Source | 323 | 48 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift13OwnershipKind7innertyEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13CapturedValueEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEEcvbEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNK4llvm8OptionalINS0_IZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEEcvbEv _ZNK4llvm8OptionalIN5swift20AccessRepresentation4KindEEcvbEv Line | Count | Source | 323 | 4.15k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17AccessStorageCastEEcvbEv _ZNK4llvm8OptionalIN5swift13AccessStorageEEcvbEv Line | Count | Source | 323 | 2.93k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift10BranchInstEEcvbEv Line | Count | Source | 323 | 32 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift10ProjectionEEcvbEv Line | Count | Source | 323 | 105 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: PrunedLiveness.cpp:_ZNK4llvm8OptionalINS0_IZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__15tupleIJjjEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFvPN5swift7OperandEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFvPN5swift13SILBasicBlockEEEEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEcvbEv Line | Count | Source | 323 | 18 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11RequirementEEcvbEv Line | Count | Source | 323 | 3.03k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test12BoolArgumentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test12UIntArgumentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test8ArgumentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11TaggedUnionIJyxNS_9StringRefEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test14StringArgumentEEcvbEv _ZNK4llvm8OptionalINS0_IN5swift12AccessorKindEEEEcvbEv Line | Count | Source | 323 | 84 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS0_IN5swift18SILInstructionKindEEEEcvbEv Line | Count | Source | 323 | 5.77k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18SILInstructionKindEEcvbEv Line | Count | Source | 323 | 27 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift23OpenedExistentialAccessEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23OpenedExistentialAccessEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19CastConsumptionKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23StoreOwnershipQualifierEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24AssignOwnershipQualifierEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19AssignByWrapperInst4ModeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16AssignOrInitInst4ModeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9SILParser19UnresolvedValueNameEEcvbEv _ZNK4llvm8OptionalINS0_IN5swift10SILLinkageEEEEcvbEv Line | Count | Source | 323 | 24 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8coverage7CounterEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift34MarkUnresolvedReferenceBindingInst4KindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift22LoadOwnershipQualifierEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift19CastConsumptionKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift23StoreOwnershipQualifierEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift24AssignOwnershipQualifierEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints16ConstraintSystem15TypeMatchResultEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEcvbEv Line | Count | Source | 323 | 609 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_8CaseStmtEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift13CaseLabelItemEEcvbEv _ZNK4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEEcvbEv Line | Count | Source | 323 | 40 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8ExprKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints13ConstraintFixEjEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20UnavailabilityReasonEEcvbEv Unexecuted instantiation: CSGen.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEEcvbEv Line | Count | Source | 323 | 576 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeEEcvbEv Line | Count | Source | 323 | 92 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: CSRanking.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121TypeBindingsToCompareEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeEEcvbEv Line | Count | Source | 323 | 20 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8TypeBaseEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyEEcvbEv Line | Count | Source | 323 | 12 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints25SingleValueStmtBranchKindEEcvbEv Line | Count | Source | 323 | 6 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21KnownFoundationEntityEEcvbEv _ZNK4llvm8OptionalIN5swift15AnyFunctionType5ParamEEcvbEv Line | Count | Source | 323 | 329 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17CompletionArgInfoEEcvbEv CSSimplify.cpp:_ZNK4llvm8OptionalINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS3_16TypeVariableTypeENS3_4TypeENS3_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEEEcvbEv Line | Count | Source | 323 | 1.09k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints14ConstraintKindEEcvbEv Line | Count | Source | 323 | 2.12k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints18MemberLookupResult14UnviableReasonEEcvbEv Line | Count | Source | 323 | 63 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIN5swift10IdentifierEEEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEEcvbEv Line | Count | Source | 323 | 576 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17CaseLabelItemInfoEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintEjEEEcvbEv Line | Count | Source | 323 | 68 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_18ConjunctionElementEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS4_11constraints17ConstraintLocatorEEEEjEEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints19TypeVariableBindingEEcvbEv Line | Count | Source | 323 | 86 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEEcvbEv Line | Count | Source | 323 | 630 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints18ConjunctionElementEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints9inference10BindingSetEEcvbEv Line | Count | Source | 323 | 886 | constexpr explicit operator bool() const { return has_value(); } |
CSStep.cpp:_ZNK4llvm8OptionalIZN5swift11constraints13ComponentStep4takeEbE8StepKindEcvbEv Line | Count | Source | 323 | 775 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEEcvbEv Line | Count | Source | 323 | 81 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEEcvbEv Line | Count | Source | 323 | 31 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintENS4_5ScoreEEEEcvbEv Line | Count | Source | 323 | 1.06k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEEcvbEv Line | Count | Source | 323 | 638 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints11FixBehaviorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__15tupleIJN5swift21ContextualTypePurposeENS3_4TypeES5_EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12TupleElementEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJNS1_4TypeEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_12ArgumentListEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementEEcvbEv Unexecuted instantiation: CSDiagnostics.cpp:_ZNK4llvm8OptionalIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEEcvbEv Line | Count | Source | 323 | 1.83k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEEcvbEv Line | Count | Source | 323 | 9.04k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultEEcvbEv Line | Count | Source | 323 | 6 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchEEcvbEv Line | Count | Source | 323 | 2.95k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEEcvbEv Line | Count | Source | 323 | 1.22k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift12LookupResultEEcvbEv Line | Count | Source | 323 | 57 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionEEcvbEv Line | Count | Source | 323 | 4.38k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptEEcvbEv Line | Count | Source | 323 | 2.95k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberEEcvbEv Line | Count | Source | 323 | 3.01k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableEEcvbEv Line | Count | Source | 323 | 2.95k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEEcvbEv Line | Count | Source | 323 | 695 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIjPN5swift4ExprEEEEcvbEv Line | Count | Source | 323 | 15 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints7FixKindEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints16IUOReferenceKindEEcvbEv Line | Count | Source | 323 | 1.30k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints15ExpressionTimerEEcvbEv Line | Count | Source | 323 | 1.15k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints5ScoreEEcvbEv Line | Count | Source | 323 | 4.72k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints9ScoreKindEEcvbEv Line | Count | Source | 323 | 1.44k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamEEcvbEv Line | Count | Source | 323 | 3 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints16SelectedOverloadEEcvbEv Line | Count | Source | 323 | 2.08k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints14OverloadChoiceEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementEEcvbEv Line | Count | Source | 323 | 4.29k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericEEcvbEv Line | Count | Source | 323 | 14.4k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift20GenericTypeParamTypeENS3_15RequirementKindEEEEcvbEv Line | Count | Source | 323 | 2.89k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints23AppliedBuilderTransformEEcvbEv _ZNK4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEEcvbEv Line | Count | Source | 323 | 1.12k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11DeclNameRefEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18InFlightDiagnosticEEcvbEv _ZNK4llvm8OptionalIN5swift21ContextualTypePurposeEEcvbEv Line | Count | Source | 323 | 224 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift26MagicIdentifierLiteralExpr4KindEEcvbEv Line | Count | Source | 323 | 12 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23SyntacticTypoCorrectionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19ExportabilityReasonEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11AccessScopeEEcvbEv _ZNK4llvm8OptionalIN5swift4DiagIJEEEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJbNS1_4TypeEEEEEcvbEv Unexecuted instantiation: TypeCheckAvailability.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119ReplacementDeclKindEEcvbEv _ZNK4llvm8OptionalIN5swift18DiagnosticBehaviorEEcvbEv Line | Count | Source | 323 | 253 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEEcvbEv _ZNK4llvm8OptionalIN5swift13SendableCheckEEcvbEv Line | Count | Source | 323 | 30 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12VarRefUseEnvEEcvbEv TypeCheckConcurrency.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121PartialApplyThunkInfoEEcvbEv Line | Count | Source | 323 | 130 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift15ConcreteDeclRefENS3_9SourceLocEEEEcvbEv Line | Count | Source | 323 | 54 | constexpr explicit operator bool() const { return has_value(); } |
TypeCheckConcurrency.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_126MemberIsolationPropagationEEcvbEv Line | Count | Source | 323 | 909 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift22DispatchQueueOperationEEcvbEv Line | Count | Source | 323 | 6 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15ReferencedActorEEcvbEv _ZNK4llvm8OptionalINS0_IN5swift22DispatchQueueOperationEEEEcvbEv Line | Count | Source | 323 | 36 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEEcvbEv Line | Count | Source | 323 | 726 | constexpr explicit operator bool() const { return has_value(); } |
TypeCheckDecl.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121ImplicitlyFinalReasonEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22AutomaticEnumValueKindEEcvbEv _ZNK4llvm8OptionalIN5swift10ObjCReasonEEcvbEv Line | Count | Source | 323 | 323 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJjNS1_8DeclNameENS1_12ObjCSelectorEEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18StaticSpellingKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7LocatedINS1_18StaticSpellingKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjN5swift11SourceRangeEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ParamDeclEEcvbEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEcvbEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_17ContextEEcvbEv _ZNK4llvm8OptionalIN5swift10EffectKindEEcvbEv Line | Count | Source | 323 | 204 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16BuiltinMacroKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23ExternalMacroDefinitionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11SourceRangeEEcvbEv _ZNK4llvm8OptionalIPN5swift7PatternEEcvbEv Line | Count | Source | 323 | 157 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift15CheckedCastKindEEcvbEv Line | Count | Source | 323 | 23 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEEcvbEv Line | Count | Source | 323 | 113 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift16RequirementMatchEEcvbEv Line | Count | Source | 323 | 4.18k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14AutoDiffConfigEEcvbEv Line | Count | Source | 323 | 9 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18ConformanceCheckerEEcvbEv Line | Count | Source | 323 | 143 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEcvbEv Line | Count | Source | 323 | 7.18k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEEcvbEv _ZNK4llvm8OptionalIN5swift14ActorIsolationEEcvbEv Line | Count | Source | 323 | 3.34k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK4llvm8OptionalIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS1_9ClassDeclEE16UnstableNameKindEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8DeclNameEEcvbEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionEEcvbEv _ZNK4llvm8OptionalIN5swift26KnownDerivableProtocolKindEEcvbEv Line | Count | Source | 323 | 223 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEcvbEv Line | Count | Source | 323 | 80.6k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints8SolutionEEcvbEv Line | Count | Source | 323 | 1.80k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19AbstractTypeWitnessEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19TypeWitnessConflictEEcvbEv _ZNK4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEEcvbEv Line | Count | Source | 323 | 174 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25RegexCaptureStructureCodeEEcvbEv _ZNK4llvm8OptionalIN5swift25PropertyWrapperMutabilityEEcvbEv Line | Count | Source | 323 | 91 | constexpr explicit operator bool() const { return has_value(); } |
TypeCheckStorage.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEEcvbEv Line | Count | Source | 323 | 71 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEcvbEv TypeCheckSwitchStmt.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEcvbEv Line | Count | Source | 323 | 140 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14TypeAttributes19OpaqueReturnTypeRefEEcvbEv Line | Count | Source | 323 | 99 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS0_IN5swift29SILFunctionTypeRepresentationEEEEcvbEv Line | Count | Source | 323 | 276 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEEcvbEv Line | Count | Source | 323 | 23 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift26FunctionTypeRepresentationEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift26FunctionTypeRepresentationEEcvbEv _ZNK4llvm8OptionalIN5swift19TypeResolutionStageEEcvbEv Line | Count | Source | 323 | 52 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16FunctionTypeReprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift13SanitizerKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_24SanitizerCoverageOptions4TypeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallStringILj128EEEEcvbEv _ZNK4llvm8OptionalIN5clang10CASOptionsEEcvbEv Line | Count | Source | 323 | 87 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5clang17DirectoryEntryRefEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5clang6ModuleEEcvbEv Line | Count | Source | 323 | 24 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift10IdentifierEEcvbEv Line | Count | Source | 323 | 246 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5clang8QualTypeEEcvbEv Line | Count | Source | 323 | 18 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEEcvbEv _ZNK4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEEcvbEv Line | Count | Source | 323 | 33 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang12CXXScopeSpecEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12DeclBaseNameEEcvbEv _ZNK4llvm8OptionalIN5swift8importer12ImportedNameEEcvbEv Line | Count | Source | 323 | 47 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang13SwiftAttrAttrEEcvbEv _ZNK4llvm8OptionalIN5swift12PlatformKindEEcvbEv Line | Count | Source | 323 | 335 | constexpr explicit operator bool() const { return has_value(); } |
ImportDecl.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEEcvbEv Line | Count | Source | 323 | 12 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift19CtorInitializerKindEEcvbEv Line | Count | Source | 323 | 724 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift12PlatformKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_6APSIntEN5swift4TypeEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignErrorConvention4KindEEcvbEv ImportName.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEEcvbEv Line | Count | Source | 323 | 710 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: ImportType.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112ImportResultEEcvbEv _ZNK4llvm8OptionalIN5swift18MappedTypeNameKindEEcvbEv Line | Count | Source | 323 | 15 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang8EnumDeclEEcvbEv _ZNK4llvm8OptionalIN5swift13ClangImporter14Implementation25ImportParameterTypeResultEEcvbEv Line | Count | Source | 323 | 18 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEcvbEv Line | Count | Source | 323 | 531 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21EffectiveClangContextEEcvbEv _ZNK4llvm8OptionalIN5swift3tokEEcvbEv Line | Count | Source | 323 | 768 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift21DiagnosticTransactionEEcvbEv Line | Count | Source | 323 | 17 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: ParseDecl.cpp:_ZNK4llvm8OptionalIZN5swift6Parser33parseStorageRestrictionsAttributeENS1_9SourceLocES3_E10AccessKindEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10InlineKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16OptimizationModeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15ExclusivityAttr4ModeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15NonSendableKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJNS_9StringRefES3_EEEEcvbEv _ZNK4llvm8OptionalIN5swift7VarDecl10IntroducerEEcvbEv Line | Count | Source | 323 | 403 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13AssociativityEEcvbEv Unexecuted instantiation: ParseDecl.cpp:_ZNK4llvm8OptionalIZN5swift6Parser33parseExtendedAvailabilitySpecListENS1_9SourceLocES3_NS_9StringRefEE3$_4EcvbEv _ZNK4llvm8OptionalIN5swift21DifferentiabilityKindEEcvbEv Line | Count | Source | 323 | 2.27k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift11AccessLevelEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift9MacroRoleEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift27MacroIntroducedDeclNameKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift27MacroIntroducedDeclNameKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift13AssociativityEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21EditorPlaceholderDataEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21PlatformConditionKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21PlatformConditionKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15TuplePatternEltEEcvbEv _ZNK4llvm8OptionalIN5swift12StableHasherEEcvbEv Line | Count | Source | 323 | 8.35k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift5TokenENS1_9allocatorIS4_EEEEEcvbEv Line | Count | Source | 323 | 17 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIN5swift7ASTNodeEEEEcvbEv Line | Count | Source | 323 | 131 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6Parser17BacktrackingScopeEEcvbEv _ZNK4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEEcvbEv Line | Count | Source | 323 | 215 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift22MetatypeRepresentationEEcvbEv Line | Count | Source | 323 | 5.16k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift10ASTExtInfoEEcvbEv Line | Count | Source | 323 | 1.05k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift13SILResultInfoEEcvbEv Line | Count | Source | 323 | 9.43k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift24UnexpectedClangTypeErrorEEcvbEv Line | Count | Source | 323 | 109k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift4UUIDEEcvbEv Line | Count | Source | 323 | 12 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25ForeignRepresentationInfoEEcvbEv _ZNK4llvm8OptionalIN5swift18ClangTypeConverterEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift38PropertyWrapperSynthesizedPropertyKindEEcvbEv Line | Count | Source | 323 | 48 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21KnownFoundationEntityEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang7CFGStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang23HeaderIncludeFormatKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle18ImplFunctionResultINS1_4TypeEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle26ImplMetatypeRepresentationEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13ClangTypeKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15TypeLookupErrorEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle23ImplParameterConventionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle30ImplParameterDifferentiabilityEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle20ImplResultConventionEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle27ImplResultDifferentiabilityEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift8Demangle10ASTBuilder17ForeignModuleKindEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_I20LayoutConstraintKindEEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEcvbEv Line | Count | Source | 323 | 685 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIcEcvbEv Line | Count | Source | 323 | 1.92k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift14SpecializeAttrEEcvbEv Line | Count | Source | 323 | 343 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift20TypeTransformContextEEcvbEv Line | Count | Source | 323 | 716 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S8_EEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift23OriginallyDefinedInAttrEEcvbEv _ZNK4llvm8OptionalIPKN5swift23SynthesizedProtocolAttrEEcvbEv Line | Count | Source | 323 | 5 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ErrorExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14NilLiteralExprEEcvbEv _ZNK4llvm8OptionalIPN5swift18BooleanLiteralExprEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift18IntegerLiteralExprEEcvbEv Line | Count | Source | 323 | 53 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16FloatLiteralExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17StringLiteralExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift26MagicIdentifierLiteralExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift29InterpolatedStringLiteralExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16RegexLiteralExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17ObjectLiteralExprEEcvbEv _ZNK4llvm8OptionalIPN5swift21DiscardAssignmentExprEEcvbEv Line | Count | Source | 323 | 6 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift11DeclRefExprEEcvbEv Line | Count | Source | 323 | 266 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12SuperRefExprEEcvbEv _ZNK4llvm8OptionalIPN5swift8TypeExprEEcvbEv Line | Count | Source | 323 | 58 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift27OtherConstructorDeclRefExprEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift24DotSyntaxBaseIgnoredExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21OverloadedDeclRefExprEEcvbEv _ZNK4llvm8OptionalIPN5swift21UnresolvedDeclRefExprEEcvbEv Line | Count | Source | 323 | 188 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift13MemberRefExprEEcvbEv Line | Count | Source | 323 | 109 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift13SubscriptExprEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20DynamicMemberRefExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20DynamicSubscriptExprEEcvbEv _ZNK4llvm8OptionalIPN5swift24UnresolvedSpecializeExprEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20UnresolvedMemberExprEEcvbEv _ZNK4llvm8OptionalIPN5swift17UnresolvedDotExprEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift12SequenceExprEEcvbEv Line | Count | Source | 323 | 38 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift9ParenExprEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11DotSelfExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9AwaitExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10BorrowExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift31UnresolvedMemberChainResultExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8CopyExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ConsumeExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift7TryExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12ForceTryExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15OptionalTryExprEEcvbEv _ZNK4llvm8OptionalIPN5swift9TupleExprEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ArrayExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14DictionaryExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22KeyPathApplicationExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16TupleElementExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15CaptureListExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ClosureExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15AutoClosureExprEEcvbEv _ZNK4llvm8OptionalIPN5swift9InOutExprEEcvbEv Line | Count | Source | 323 | 48 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19VarargExpansionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17PackExpansionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PackElementExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19MaterializePackExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15DynamicTypeExprEEcvbEv _ZNK4llvm8OptionalIPN5swift27RebindSelfInConstructorExprEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15OpaqueValueExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift35PropertyWrapperValuePlaceholderExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift26AppliedPropertyWrapperExprEEcvbEv _ZNK4llvm8OptionalIPN5swift19DefaultArgumentExprEEcvbEv Line | Count | Source | 323 | 21 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16BindOptionalExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22OptionalEvaluationExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14ForceValueExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19OpenExistentialExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift28MakeTemporarilyEscapableExprEEcvbEv _ZNK4llvm8OptionalIPN5swift8CallExprEEcvbEv Line | Count | Source | 323 | 96 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PrefixUnaryExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16PostfixUnaryExprEEcvbEv _ZNK4llvm8OptionalIPN5swift10BinaryExprEEcvbEv Line | Count | Source | 323 | 17 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift17DotSyntaxCallExprEEcvbEv Line | Count | Source | 323 | 33 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift22ConstructorRefCallExprEEcvbEv Line | Count | Source | 323 | 23 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift8LoadExprEEcvbEv Line | Count | Source | 323 | 3 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21ABISafeConversionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20DestructureTupleExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift28UnresolvedTypeConversionExprEEcvbEv _ZNK4llvm8OptionalIPN5swift22FunctionConversionExprEEcvbEv Line | Count | Source | 323 | 3 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift31CovariantFunctionConversionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift29CovariantReturnConversionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22MetatypeConversionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift30CollectionUpcastConversionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ErasureExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22AnyHashableErasureExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16BridgeToObjCExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18BridgeFromObjCExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift29ConditionalBridgeFromObjCExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17DerivedToBaseExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20ArchetypeToSuperExprEEcvbEv _ZNK4llvm8OptionalIPN5swift22InjectIntoOptionalExprEEcvbEv Line | Count | Source | 323 | 5 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift25ClassMetatypeToObjectExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift31ExistentialMetatypeToObjectExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift28ProtocolMetatypeToObjectExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18InOutToPointerExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18ArrayToPointerExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19StringToPointerExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20PointerToPointerExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift27ForeignObjectConversionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift23UnevaluatedInstanceExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22UnderlyingToOpaqueExprEEcvbEv _ZNK4llvm8OptionalIPN5swift26DifferentiableFunctionExprEEcvbEv Line | Count | Source | 323 | 3 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18LinearFunctionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift41DifferentiableFunctionExtractOriginalExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift33LinearFunctionExtractOriginalExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift34LinearToDifferentiableFunctionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21ForcedCheckedCastExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift26ConditionalCheckedCastExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6IsExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10CoerceExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ArrowExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11TernaryExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14EnumIsCaseExprEEcvbEv _ZNK4llvm8OptionalIPN5swift10AssignExprEEcvbEv Line | Count | Source | 323 | 40 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18CodeCompletionExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21UnresolvedPatternExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19LazyInitializerExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21EditorPlaceholderExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16ObjCSelectorExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11KeyPathExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19SingleValueStmtExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14KeyPathDotExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10OneWayExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift7TapExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12TypeJoinExprEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18MacroExpansionExprEEcvbEv _ZNK4llvm8OptionalIPN5swift10ReturnStmtEEcvbEv Line | Count | Source | 323 | 137 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8ThenStmtEEcvbEv _ZNK4llvm8OptionalIPN5swift9YieldStmtEEcvbEv Line | Count | Source | 323 | 25 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9DeferStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6IfStmtEEcvbEv _ZNK4llvm8OptionalIPN5swift9GuardStmtEEcvbEv Line | Count | Source | 323 | 2 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9WhileStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6DoStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11DoCatchStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15RepeatWhileStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ForEachStmtEEcvbEv _ZNK4llvm8OptionalIPN5swift10SwitchStmtEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9BreakStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12ContinueStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15FallthroughStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8FailStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ThrowStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11DiscardStmtEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PoundAssertStmtEEcvbEv _ZNK4llvm8OptionalIPN5swift12ParenPatternEEcvbEv Line | Count | Source | 323 | 10 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift12TuplePatternEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift10AnyPatternEEcvbEv Line | Count | Source | 323 | 4 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift12TypedPatternEEcvbEv Line | Count | Source | 323 | 855 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift14BindingPatternEEcvbEv Line | Count | Source | 323 | 8 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9IsPatternEEcvbEv _ZNK4llvm8OptionalIPN5swift18EnumElementPatternEEcvbEv Line | Count | Source | 323 | 19 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19OptionalSomePatternEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11BoolPatternEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ExprPatternEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIjjEEEcvbEv Line | Count | Source | 323 | 896 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift8TypeReprEjEEEcvbEv _ZNK4llvm8OptionalIN5swift12AccessorKindEEcvbEv Line | Count | Source | 323 | 567 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift12TypeAttrKindEEcvbEv Line | Count | Source | 323 | 6.17k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift12DeclAttrKindEEcvbEv Line | Count | Source | 323 | 34.8k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift4TypeEEcvbEv Line | Count | Source | 323 | 223k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift16GenericSignatureEEcvbEv Line | Count | Source | 323 | 44.7k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift11IndexSubsetEEcvbEv Line | Count | Source | 323 | 190 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift15NonSendableAttrEEcvbEv Line | Count | Source | 323 | 5 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEcvbEv Line | Count | Source | 323 | 12 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEcvbEv _ZNK4llvm8OptionalINS0_IN5swift30AutoDiffDerivativeFunctionKind7innertyEEEEcvbEv Line | Count | Source | 323 | 36 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift36DifferentiabilityWitnessFunctionKind7innertyEEEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEcvbEv Line | Count | Source | 323 | 325 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_14AtomicOrderingEEcvbEv ClangTypeConverter.cpp:_ZNK4llvm8OptionalIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS1_16BoundGenericTypeEE10StructKindEcvbEv Line | Count | Source | 323 | 56 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23OriginallyDefinedInAttr13ActiveVersionEEcvbEv _ZNK4llvm8OptionalINS_13TinyPtrVectorIPN5swift9ValueDeclEEEEcvbEv Line | Count | Source | 323 | 18.9k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift20ImplicitMemberActionEEcvbEv Line | Count | Source | 323 | 242 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift20RequirementSignatureEEcvbEv Line | Count | Source | 323 | 4.67k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift8CaseStmtEPNS3_7PatternEEEEcvbEv Line | Count | Source | 323 | 24 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14ParamSpecifierEEcvbEv Line | Count | Source | 323 | 15.6k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11InitializerEEcvbEv _ZNK4llvm8OptionalIPN5swift16GenericParamListEEcvbEv Line | Count | Source | 323 | 29.2k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift15NominalTypeDeclEEcvbEv Line | Count | Source | 323 | 25 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEEcvbEv Line | Count | Source | 323 | 13 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift19PatternBindingEntryEEcvbEv Line | Count | Source | 323 | 46 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift12AccessorDeclEEcvbEv Line | Count | Source | 323 | 73 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift19OpaqueReadOwnershipEEcvbEv Line | Count | Source | 323 | 615 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift14DestructorDeclEEcvbEv Line | Count | Source | 323 | 247 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIPN5swift12ProtocolDeclEEEEcvbEv Line | Count | Source | 323 | 3.82k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIPN5swift9ValueDeclEEEEcvbEv Line | Count | Source | 323 | 124 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift15StorageImplInfoEEcvbEv Line | Count | Source | 323 | 2.68k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift12NamedPatternEEcvbEv Line | Count | Source | 323 | 938 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift4ExprEEcvbEv Line | Count | Source | 323 | 14 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift18BodyAndFingerprintEEcvbEv Line | Count | Source | 323 | 31.9k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift9BraceStmtEEcvbEv Line | Count | Source | 323 | 545 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift14SelfAccessKindEEcvbEv Line | Count | Source | 323 | 10.8k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__15tupleIJEEEEcvbEv Line | Count | Source | 323 | 276 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift13MacroRoleAttrEEcvbEv _ZNK4llvm8OptionalIPN5swift4DeclEEcvbEv Line | Count | Source | 323 | 236 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEEcvbEv _ZNK4llvm8OptionalIN5swift14DiagnosticInfoEEcvbEv Line | Count | Source | 323 | 45 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10RawCommentEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25fine_grained_dependencies8NodeKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25fine_grained_dependencies10DeclAspectEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift16AttributedImportINS2_14ImportedModuleEEEEEEcvbEv Line | Count | Source | 323 | 56 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift10ModuleDeclENS3_10IdentifierEEEEcvbEv _ZNK4llvm8OptionalIPKN5swift10CustomAttrEEcvbEv Line | Count | Source | 323 | 5.20k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift23SourceFileParsingResultEEcvbEv Line | Count | Source | 323 | 131 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPKN5swift20SPIAccessControlAttrEEcvbEv Line | Count | Source | 323 | 646 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20ModuleDependencyKindEEcvbEv _ZNK4llvm8OptionalIPN5swift9ClassDeclEEcvbEv Line | Count | Source | 323 | 12.8k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ExprPatternMatchResultEEcvbEv _ZNK4llvm8OptionalIN5swift18TypeWitnessAndDeclEEcvbEv Line | Count | Source | 323 | 1 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift7WitnessEEcvbEv Line | Count | Source | 323 | 108 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift9rewriting6SymbolEEcvbEv Line | Count | Source | 323 | 84.2k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIPN5swift9rewriting11PropertyBagEEcvbEv Line | Count | Source | 323 | 56.8k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift9rewriting10DebugFlagsEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9rewriting10DebugFlagsEEcvbEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift9rewriting4TermEEEEcvbEv Line | Count | Source | 323 | 823 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift22ProtocolConformanceRefEEcvbEv Line | Count | Source | 323 | 471 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19CanGenericSignatureEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25PrecedenceGroupDescriptor13PathDirectionEEcvbEv _ZNK4llvm8OptionalINSt3__14pairIPN5swift13ArchetypeTypeEPNS3_23OpaqueTypeArchetypeTypeEEEEcvbEv Line | Count | Source | 323 | 59 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift10file_types2IDEEcvbEv Line | Count | Source | 323 | 4.78k | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift7FeatureEEEEcvbEv _ZNK4llvm8OptionalINS0_INS_9StringRefEEEEcvbEv Line | Count | Source | 323 | 2.94k | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalIN5swift19GeneratedSourceInfoEEcvbEv Line | Count | Source | 323 | 607 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEEEcvbEv _ZNK4llvm8OptionalINS_12VersionTupleEEcvbEv Line | Count | Source | 323 | 944 | constexpr explicit operator bool() const { return has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIiNS1_9allocatorIiEEEEEcvbEv Line | Count | Source | 323 | 7 | constexpr explicit operator bool() const { return has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16BlockListKeyKindEEcvbEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15BlockListActionEEcvbEv |
324 | 5.60M | constexpr bool has_value() const { return Storage.has_value(); }_ZNK4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE9has_valueEv Line | Count | Source | 324 | 4.91k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift10DiagnosticEE9has_valueEv Line | Count | Source | 324 | 114 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_5AlignEE9has_valueEv Line | Count | Source | 324 | 304 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIxE9has_valueEv _ZNK4llvm8OptionalIjE9has_valueEv Line | Count | Source | 324 | 872k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalImE9has_valueEv _ZNK4llvm8OptionalIN5clang17DirectoryEntryRefEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5clang12FileEntryRefEE9has_valueEv Line | Count | Source | 324 | 9.01k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_6TripleEE9has_valueEv Line | Count | Source | 324 | 1.01k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_12VersionTupleEE9has_valueEv Line | Count | Source | 324 | 1.91k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalItE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEE9has_valueEv _ZNK4llvm8OptionalINS_9StringRefEE9has_valueEv Line | Count | Source | 324 | 28.2k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6DIFile12ChecksumInfoIPNS_8MDStringEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_8MDStringEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13DIDerivedType11PtrAuthDataEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12DIExpression12FragmentInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8Function12ProfileCountEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12RoundingModeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_2fp17ExceptionBehaviorEE9has_valueEv _ZNK4llvm8OptionalIN5swift11FingerprintEE9has_valueEv Line | Count | Source | 324 | 85.2k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift6driver3Job16ResponseFileInfoEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift12ObjCSelectorEE9has_valueEv Line | Count | Source | 324 | 25 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEE9has_valueEv Line | Count | Source | 324 | 50 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14TypeAttributes10ConventionEE9has_valueEv Line | Count | Source | 324 | 46 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift4UUIDEE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8TypeReprEE9has_valueEv _ZNK4llvm8OptionalIbE9has_valueEv Line | Count | Source | 324 | 273k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12ModuleLoader23ModuleVersionSourceKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang11SourceRangeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang15CharSourceRangeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang9FixItHintEE9has_valueEv _ZNK4llvm8OptionalIN5clang15NullabilityKindEE9has_valueEv Line | Count | Source | 324 | 82 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift10ASTExtInfoEE9has_valueEv Line | Count | Source | 324 | 115k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift15SubstitutionMapEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_15MutableArrayRefIPN5swift14OpaqueTypeDecl35ConditionallyAvailableSubstitutionsEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift17KnownProtocolKindEE9has_valueEv Line | Count | Source | 324 | 25.4k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift20RequirementSignatureEE9has_valueEv Line | Count | Source | 324 | 8.37k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEE9has_valueEv Line | Count | Source | 324 | 148 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIN5swift16AttributedImportINS2_14ImportedModuleEEEEEE9has_valueEv Line | Count | Source | 324 | 2.54k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8ArgumentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ApplyIsolationCrossingEE9has_valueEv _ZNK4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEE9has_valueEv Line | Count | Source | 324 | 137 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift15DiagnosticQueueEE9has_valueEv Line | Count | Source | 324 | 28.4k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift7SILTypeEE9has_valueEv Line | Count | Source | 324 | 10.1k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11SILLocationEE9has_valueEv Line | Count | Source | 324 | 23.2k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16SILDebugVariableEE9has_valueEv Line | Count | Source | 324 | 30.3k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16FixedOperandListILj1EEEE9has_valueEv Line | Count | Source | 324 | 4.39k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift15EnumElementDeclEE9has_valueEv Line | Count | Source | 324 | 3.07k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18ReferenceOwnershipEE9has_valueEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift14ProfileCounterEEEE9has_valueEv Line | Count | Source | 324 | 130 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift23KeyPathPatternComponentEE9has_valueEv Line | Count | Source | 324 | 56 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_15MemoryBufferRefEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_18ThreadPoolStrategyEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_3cas5CASIDEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKcE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12DenormalMode16DenormalModeKindEE9has_valueEv _ZNK4llvm8OptionalIyE9has_valueEv Line | Count | Source | 324 | 769 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift13SemanticsAttrEE9has_valueEv Line | Count | Source | 324 | 321 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift13DeclAttributeEE9has_valueEv Line | Count | Source | 324 | 15.1k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11AccessLevelEE9has_valueEv Line | Count | Source | 324 | 84.7k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift12EnumCaseDeclEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift8CaseStmtEE9has_valueEv Line | Count | Source | 324 | 151 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19PatternBindingState4KindEE9has_valueEv _ZNK4llvm8OptionalIN5swift7VarDecl10IntroducerEE9has_valueEv Line | Count | Source | 324 | 699 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift8SILValueEE9has_valueEv Line | Count | Source | 324 | 25.1k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift13EndBorrowInstEE9has_valueEv _ZNK4llvm8OptionalIPN5swift13EndAccessInstEE9has_valueEv Line | Count | Source | 324 | 30 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11LangOptions23ASTVerifierOverrideKindEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7FeatureEE9has_valueEv _ZNK4llvm8OptionalIN5swift21CopyPropagationOptionEE9has_valueEv Line | Count | Source | 324 | 17 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_7remarks14RemarkLocationEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEE9has_valueEv Line | Count | Source | 324 | 42 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEE9has_valueEv Line | Count | Source | 324 | 29 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_9CodeModel5ModelEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25fine_grained_dependencies18SourceFileDepGraphEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKNS_8FunctionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13FastMathFlagsEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_5ValueEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_6object12VersionEntryEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIdE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIDnE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_4wasm14WasmSymbolTypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_4wasm14WasmGlobalTypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_4wasm13WasmTableTypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIhE9has_valueEv Unexecuted instantiation: swift_api_digester_main.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119SameNameNodeMatcher13NameMatchKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift3ide3api7SDKNodeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift3ide3api11SDKNodeDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang12Preprocessor16PreambleSkipInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang13DarwinSDKInfo27RelatedTargetVersionMappingEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIN5clang19TemplateArgumentLocEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang4Sema20ImmediateDiagBuilderEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang14SourceLocationEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4sema21TemplateDeductionInfoEE9has_valueEv Unexecuted instantiation: swift_cache_tool_main.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_120SwiftCacheToolActionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_3cas9ObjectRefEE9has_valueEv _ZNK4llvm8OptionalIN5swift7version7VersionEE9has_valueEv Line | Count | Source | 324 | 30 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEE9has_valueEv _ZNK4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEE9has_valueEv Line | Count | Source | 324 | 224 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18ModuleDependencyIDEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift20ModuleDependencyInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22SwiftDependencyTrackerEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_3orc15SymbolStringPtrEPNS3_8JITDylibEEEE9has_valueEv Unexecuted instantiation: Index.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_19MappedLocEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16OptionalTypeKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider15EnumElementInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12FunctionTypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24LoweredFunctionSignatureEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15cxx_translation19RepresentationErrorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24LoweredFunctionSignature16DirectResultTypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES4_EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19ClangRepresentationEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEE9has_valueEv _ZNK4llvm8OptionalINSt3__13setINS_9StringRefENS1_4lessIS3_EENS1_9allocatorIS3_EEEEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift24FrontendInputsAndOutputsEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift19OutputFilesComputerEE9has_valueEv Line | Count | Source | 324 | 11 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEE9has_valueEv Line | Count | Source | 324 | 22 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift24SupplementaryOutputPathsEE9has_valueEv Line | Count | Source | 324 | 11 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZNK4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift27UnavailableDeclOptimizationEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift27UnavailableDeclOptimizationEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift17StrictConcurrencyEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17StrictConcurrencyEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift28AccessNoteDiagnosticBehaviorEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift28AccessNoteDiagnosticBehaviorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16ConcurrencyModelEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IbEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21DestroyHoistingOptionEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21CopyPropagationOptionEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift21DestroyHoistingOptionEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift16JITDebugArtifactEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16JITDebugArtifactEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift16IRGenLLVMLTOKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16IRGenLLVMLTOKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFvvEEEE9has_valueEv DiagnosticVerifier.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEE9has_valueEv Line | Count | Source | 324 | 42 | constexpr bool has_value() const { return Storage.has_value(); } |
DiagnosticVerifier.cpp:_ZNK4llvm8OptionalIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift15LineColumnRangeEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13ModuleBuffersEE9has_valueEv Line | Count | Source | 324 | 38 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__110unique_ptrINS_12MemoryBufferENS1_14default_deleteIS3_EEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift14SourceFileKindEE9has_valueEv Line | Count | Source | 324 | 11 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15AccessNotesFileEE9has_valueEv _ZNK4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEE9has_valueEv Line | Count | Source | 324 | 124 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13serialization6StatusEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang3cas21CompileJobCacheResult6OutputEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift6markup9ParagraphEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift6markup12ReturnsFieldEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift6markup11ThrowsFieldEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6markup12CommentPartsEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift3ide3api15SDKNodeDeclTypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift3ide3api7KeyKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api7KeyKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api11SDKNodeKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8DeclKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift8DeclKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIN5swift15CustomAttrValueELj2EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift20EnumElementDeclValueENS1_9allocatorIS4_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift17FunctionParameterENS1_9allocatorIS4_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift25EnumElementParameterValueENS1_9allocatorIS4_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift13AvailableAttrEE9has_valueEv _ZNK4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEE9has_valueEv Line | Count | Source | 324 | 161 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_13AtomicRMWInst5BinOpEE9has_valueEv _ZNK4llvm8OptionalIN5swift5irgen12StackAddressEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen7AddressEE9has_valueEv Line | Count | Source | 324 | 102 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEE9has_valueEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift7SILTypeEEEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen11ClassLayoutEE9has_valueEv Line | Count | Source | 324 | 26 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPNS_8FunctionEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift27RestatedObjCConformanceAttrEE9has_valueEv _ZNK4llvm8OptionalIN5swift6Mangle10ASTMangler14SpecialContextEE9has_valueEv Line | Count | Source | 324 | 2.58k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZNK4llvm8OptionalIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoEE9has_valueEv Unexecuted instantiation: GenDiffFunc.cpp:_ZNK4llvm8OptionalIPKN12_GLOBAL__N_119LinearFuncFieldInfoEE9has_valueEv _ZNK4llvm8OptionalIN5swift18ClusteredBitVectorEE9has_valueEv Line | Count | Source | 324 | 5 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen9AtomicityEE9has_valueEv Line | Count | Source | 324 | 10 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen15FunctionPointerEE9has_valueEv Line | Count | Source | 324 | 26 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEE9has_valueEv Line | Count | Source | 324 | 32 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen19TypeEntityReferenceEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TypeImportInfoINS_9StringRefEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_9InlineAsmEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen14FulfillmentMapEE9has_valueEv _ZNK4llvm8OptionalINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS5_12ConstantInitEEEEE9has_valueEv Line | Count | Source | 324 | 29 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: GenStruct.cpp:_ZNK4llvm8OptionalIPKN12_GLOBAL__N_114ClangFieldInfoEE9has_valueEv GenStruct.cpp:_ZNK4llvm8OptionalIPKN12_GLOBAL__N_115StructFieldInfoEE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: GenTuple.cpp:_ZNK4llvm8OptionalIPKN12_GLOBAL__N_114TupleFieldInfoEE9has_valueEv _ZNK4llvm8OptionalINS_5APIntEE9has_valueEv Line | Count | Source | 324 | 1.20k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEE9has_valueEv Unexecuted instantiation: GenValueWitness.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetails12DirectResultEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18GenericRequirementEE9has_valueEv _ZNK4llvm8OptionalINS_3vfs10OutputFileEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
IRGen.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119SymbolSourcesToEmitEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEE9has_valueEv Line | Count | Source | 324 | 216 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6VFInfoEE9has_valueEv _ZNK4llvm8OptionalIiE9has_valueEv Line | Count | Source | 324 | 55.5k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_10InlineCostEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIlNS_34PreservedCFGCheckerInstrumentation7BBGuardENS_12DenseMapInfoIlvEENS_6detail12DenseMapPairIlS3_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang19ASTSourceDescriptorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_12DIExpressionEE9has_valueEv _ZNK4llvm8OptionalINS_8TypeSizeEE9has_valueEv Line | Count | Source | 324 | 3 | constexpr bool has_value() const { return Storage.has_value(); } |
IRGenSIL.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112LoweredValueEE9has_valueEv Line | Count | Source | 324 | 96 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen13OperationCostEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift5irgen4SizeEE9has_valueEv Line | Count | Source | 324 | 62 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift14CanTypeWrapperINS3_15ExistentialTypeEEEjEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift5irgen19NonFixedOffsetsImplEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IhEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__13setIaNS1_4lessIaEENS1_9allocatorIaEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23OriginallyDefinedInAttr13ActiveVersionEE9has_valueEv _ZNK4llvm8OptionalINS_10DataLayoutEE9has_valueEv Line | Count | Source | 324 | 163 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_5MachO13PackedVersionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift5irgen4SizeEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift5irgen9AlignmentEE9has_valueEv Line | Count | Source | 324 | 3 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift5irgen9AlignmentEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IjEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPNS_8ConstantEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen14YAMLModuleNodeEE9has_valueEv _ZNK4llvm8OptionalIN5swift7RT_KindEE9has_valueEv Line | Count | Source | 324 | 12.5k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_16OperandBundleUseEE9has_valueEv _ZNK4llvm8OptionalIN5swift18DiverseValueBufferINS1_8Lowering7CleanupEEEE9has_valueEv Line | Count | Source | 324 | 301 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering5ScopeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering8JumpDestEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataEE9has_valueEv _ZNK4llvm8OptionalIN5swift10SILDeclRefEE9has_valueEv Line | Count | Source | 324 | 2.81k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12ProtocolDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8FuncDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18AssociatedTypeDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift7VarDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19ProtocolConformanceEE9has_valueEv _ZNK4llvm8OptionalIPKN5swift18DifferentiableAttrEE9has_valueEv Line | Count | Source | 324 | 6.06k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift14DerivativeAttrEE9has_valueEv Line | Count | Source | 324 | 5.68k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift9MacroRoleEE9has_valueEv Line | Count | Source | 324 | 93 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEE9has_valueEv Line | Count | Source | 324 | 1.04k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift8Lowering15FunctionSectionEE9has_valueEv Line | Count | Source | 324 | 18 | constexpr bool has_value() const { return Storage.has_value(); } |
SILGenApply.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_16CalleeEE9has_valueEv Line | Count | Source | 324 | 127 | constexpr bool has_value() const { return Storage.has_value(); } |
SILGenApply.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_18CallSiteEE9has_valueEv Line | Count | Source | 324 | 412 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift8Lowering18SpecializedEmitterEE9has_valueEv Line | Count | Source | 324 | 79 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEE9has_valueEv Line | Count | Source | 324 | 69 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS1_14default_deleteIS5_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering13ArgumentScopeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIPN5swift4ExprELj2EEEE9has_valueEv _ZNK4llvm8OptionalIN5swift14ActorIsolationEE9has_valueEv Line | Count | Source | 324 | 3.61k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering6LValueEE9has_valueEv _ZNK4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEE9has_valueEv Line | Count | Source | 324 | 10 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering10ConversionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering22ConversionPeepholeHintEE9has_valueEv _ZNK4llvm8OptionalIN5swift8Lowering12ManagedValueEE9has_valueEv Line | Count | Source | 324 | 5 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7ASTNodeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering20LogicalPathComponent13AccessStorageEE9has_valueEv _ZNK4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEE9has_valueEv Line | Count | Source | 324 | 16 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift20SILAccessEnforcementEE9has_valueEv Line | Count | Source | 324 | 54 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEE9has_valueEv _ZNK4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEE9has_valueEv Line | Count | Source | 324 | 505 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEE9has_valueEv Line | Count | Source | 324 | 358 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEE9has_valueEv Line | Count | Source | 324 | 38.1k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKjE9has_valueEv _ZNK4llvm8OptionalIN5swift16MatchingSetFlagsEE9has_valueEv Line | Count | Source | 324 | 292 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEE9has_valueEv Line | Count | Source | 324 | 365 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEE9has_valueEv Line | Count | Source | 324 | 428 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEE9has_valueEv Line | Count | Source | 324 | 7.81k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEE9has_valueEv Line | Count | Source | 324 | 5.00k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14ProjectionPathEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13ArrayCallKindEE9has_valueEv Line | Count | Source | 324 | 2.80k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14SILVTableEntryEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift25FindLocalApplySitesResultEE9has_valueEv Line | Count | Source | 324 | 1.09k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEE9has_valueEv _ZNK4llvm8OptionalIPN5swift21EpilogueARCBlockStateEE9has_valueEv Line | Count | Source | 324 | 43 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEE9has_valueEv Line | Count | Source | 324 | 74 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14CanTypeWrapperINS1_15SILFunctionTypeEEEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16SILParameterInfoEE9has_valueEv Line | Count | Source | 324 | 99 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18MarkDependenceInstEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9ValueBase25DefiningInstructionResultEE9has_valueEv _ZNK4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEE9has_valueEv Line | Count | Source | 324 | 27 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25SILInstructionResultArrayEE9has_valueEv _ZNK4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEE9has_valueEv Line | Count | Source | 324 | 1.87k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13SILAccessKindEE9has_valueEv Line | Count | Source | 324 | 46 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15FixLifetimeInstEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12TryApplyInstEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9ApplySiteEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14AllocStackInstEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_16PartialApplyInstENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15DestroyAddrInstEE9has_valueEv DefiniteInitialization.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_16DIKindEE9has_valueEv Line | Count | Source | 324 | 57 | constexpr bool has_value() const { return Storage.has_value(); } |
DiagnoseStaticExclusivity.cpp:_ZNK4llvm8OptionalINS_13SmallDenseMapIN5swift13AccessStorageEN12_GLOBAL__N_110AccessInfoELj4ENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEE9has_valueEv Line | Count | Source | 324 | 47 | constexpr bool has_value() const { return Storage.has_value(); } |
DiagnoseStaticExclusivity.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEE9has_valueEv Line | Count | Source | 324 | 42 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_117ConflictingAccessEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_14AutoDiffConfigEEEE9has_valueEv Line | Count | Source | 324 | 9 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift12TangentSpaceEE9has_valueEv Line | Count | Source | 324 | 395 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16SubElementOffsetEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_INS1_8SILValueEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_7SILNodeENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS5_IPNS1_7OperandENS1_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS1_14FrozenMultiMapIS7_SC_NS_11SmallVectorISE_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift13SILBasicBlockEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20DebugVarCarryingInstEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_INS1_20DebugVarCarryingInstEEEEEEENS1_14FrozenMultiMapIjS6_NS4_6vectorIS8_NS4_9allocatorIS8_EEEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEE9has_valueEv PredictableMemOpt.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114AvailableValueEE9has_valueEv Line | Count | Source | 324 | 46 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift7SILTypeEjEEE9has_valueEv Line | Count | Source | 324 | 63 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22SingleValueInstructionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_IPNS1_22SingleValueInstructionEEEEEEENS1_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_IS6_EEEEEENS1_14FrozenMultiMapIS6_S6_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEE9has_valueEv YieldOnceCheck.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck7BBStateEE9has_valueEv Line | Count | Source | 324 | 18 | constexpr bool has_value() const { return Storage.has_value(); } |
YieldOnceCheck.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114YieldOnceCheck10YieldErrorEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9StoreInstEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13SymbolicValueEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13BorrowedValueEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16DestroyValueInstEE9has_valueEv _ZNK4llvm8OptionalIN5swift17FullApplySiteKind7innertyEE9has_valueEv Line | Count | Source | 324 | 899k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift17FullApplySiteKindEE9has_valueEv Line | Count | Source | 324 | 884k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13ApplySiteKind7innertyEE9has_valueEv Line | Count | Source | 324 | 345k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13ApplySiteKindEE9has_valueEv Line | Count | Source | 324 | 105k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8PassKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEE9has_valueEv _ZNK4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEE9has_valueEv Line | Count | Source | 324 | 139 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift14SILInstructionEE9has_valueEv Line | Count | Source | 324 | 128k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift10ProjectionEE9has_valueEv Line | Count | Source | 324 | 105 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift23ConcreteExistentialInfoEE9has_valueEv Line | Count | Source | 324 | 649 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16BuiltinValueKindEE9has_valueEv Line | Count | Source | 324 | 143k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift29ConcreteOpenedExistentialInfoEE9has_valueEv Line | Count | Source | 324 | 649 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalI20ConcreteArgumentCopyE9has_valueEv _ZNK4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11semanticarc7Context21ConsumingOperandStateEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_INS1_11semanticarc7Context21ConsumingOperandStateEEEEEEENS1_14FrozenMultiMapIS6_S9_NS4_6vectorISB_NS4_9allocatorISB_EEEEE15PairToSecondEltEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15SILPrintContextEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift21MarkUninitializedInst4KindEE9has_valueEv Line | Count | Source | 324 | 10 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift13CopyValueInstEE9has_valueEv Line | Count | Source | 324 | 11 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16DeallocStackInstEE9has_valueEv RedundantOverflowCheckRemoval.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationEE9has_valueEv Line | Count | Source | 324 | 16 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEE9has_valueEv Line | Count | Source | 324 | 320 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEE9has_valueEv Line | Count | Source | 324 | 46 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEE9has_valueEv Line | Count | Source | 324 | 64.8k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12siloptimizer7CleanupIvJPNS1_14SILInstructionEEEEE9has_valueEv SILMem2Reg.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_120StorageStateTrackingINS1_10LiveValuesEEEE9has_valueEv Line | Count | Source | 324 | 86 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_jEEEEE9has_valueEv Line | Count | Source | 324 | 7 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift15StoreBorrowInstEE9has_valueEv Line | Count | Source | 324 | 28 | constexpr bool has_value() const { return Storage.has_value(); } |
SILMem2Reg.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEE9has_valueEv Line | Count | Source | 324 | 27 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEE9has_valueEv Line | Count | Source | 324 | 998 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13BasicBlockSetEE9has_valueEv Line | Count | Source | 324 | 33 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22LoadOwnershipQualifierEE9has_valueEv Line | Count | Source | 324 | 2.13k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift11SILFunctionENS3_15SubstitutionMapEEEE9has_valueEv _ZNK4llvm8OptionalI17WellKnownFunctionE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockES5_EEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN21LexicalDestroyFolding5MatchEE9has_valueEv SILInliner.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEE9has_valueEv Line | Count | Source | 324 | 820 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10ModuleDeclEE9has_valueEv Unexecuted instantiation: APIDigesterData.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_115DiffItemKeyKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api15APIDiffItemKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift3ide3api11SDKNodeKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api14NodeAnnotationEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide3api13SpecialCaseIdEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift6markup20LocalizationKeyFieldEE9has_valueEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5TokenEE9has_valueEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112TrailingInfoEE9has_valueEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_113IndentContextEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17ReferenceMetaDataEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3ide17ResolvedRangeInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10AccessKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7LocatedIPNS1_12ArgumentListEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__113unordered_setIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift6driver3Job9ConditionEbEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIbbEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift6driver20IncrementalJobAction9InputInfo6StatusEEEE9has_valueEv _ZNK4llvm8OptionalIN5clang13DarwinSDKInfoEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift6driver6Driver10DriverKindEE9has_valueEv Line | Count | Source | 324 | 5 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13OutputFileMapEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6driver10OutputInfo7LTOKindEE9has_valueEv _ZNK4llvm8OptionalIN5swift6driver10OutputInfo11MSVCRuntimeEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7options2IDEE9has_valueEv _ZNK4llvm8OptionalINS0_IN5swift6driver6Driver10DriverKindEEEE9has_valueEv Line | Count | Source | 324 | 80 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift6driver10OutputInfo7LTOKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift6driver10OutputInfo11MSVCRuntimeEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift25fine_grained_dependencies14ModuleDepGraph25LocationOfPreexistingNodeEPNS4_18ModuleDepGraphNodeEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11NullablePtrINS1_25fine_grained_dependencies18ModuleDepGraphNodeEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift15RequirementKindEE9has_valueEv Line | Count | Source | 324 | 1.46k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalI20LayoutConstraintKindE9has_valueEv Line | Count | Source | 324 | 14 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift12ReadImplKindEE9has_valueEv Line | Count | Source | 324 | 374 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13WriteImplKindEE9has_valueEv Line | Count | Source | 324 | 374 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift17ReadWriteImplKindEE9has_valueEv Line | Count | Source | 324 | 374 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift19DefaultArgumentKindEE9has_valueEv Line | Count | Source | 324 | 4.15k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16SILCoroutineKindEE9has_valueEv Line | Count | Source | 324 | 267 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift19ParameterConventionEE9has_valueEv Line | Count | Source | 324 | 817 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift29SILParameterDifferentiabilityEE9has_valueEv _ZNK4llvm8OptionalIN5swift16ResultConventionEE9has_valueEv Line | Count | Source | 324 | 220 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift26SILResultDifferentiabilityEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23StableSerializationPath12ExternalPath13ComponentKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang14IdentifierInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang11ConceptDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang7TagDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang20TemplateTypeParmDeclEE9has_valueEv _ZNK4llvm8OptionalIN5swift17StringLiteralInst8EncodingEE9has_valueEv Line | Count | Source | 324 | 488 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10ImportKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11CommentInfoEE9has_valueEv _ZNK4llvm8OptionalIN5swift10ModuleDecl16ImportFilterKindEE9has_valueEv Line | Count | Source | 324 | 213 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11LibraryKindEE9has_valueEv Line | Count | Source | 324 | 71 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14ImportedModuleEE9has_valueEv Line | Count | Source | 324 | 247 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift4TypeEjEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23ExpandedMacroDefinitionEE9has_valueEv _ZNK4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEE9has_valueEv Line | Count | Source | 324 | 9.35k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang11ConceptDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang14IdentifierInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang12TemplateNameEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang7TagDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang20TemplateTypeParmDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift4DeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang4TypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift11DeclContextEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift18GenericEnvironmentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PackConformanceEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift9SILLayoutEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang13CXXRecordDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang13CXXRecordDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4DeclEE9has_valueEv _ZNK4llvm8OptionalIPKN5clang4DeclEE9has_valueEv Line | Count | Source | 324 | 868 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4ExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang4ExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang12FunctionDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang12FunctionDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang9NamedDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang9NamedDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang18NamespaceAliasDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang18NamespaceAliasDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang13NamespaceDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang13NamespaceDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang16ObjCProtocolDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang16ObjCProtocolDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang17ObjCTypeParamDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang17ObjCTypeParamDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang4StmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang4StmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang12TemplateDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang12TemplateDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang24TemplateTemplateParmDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang24TemplateTemplateParmDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang15UsingShadowDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang15UsingShadowDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5clang9ValueDeclEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang9ValueDeclEE9has_valueEv _ZNK4llvm8OptionalIN5swift24SerializedModuleBaseNameEE9has_valueEv Line | Count | Source | 324 | 198 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift10SILLinkageEE9has_valueEv Line | Count | Source | 324 | 454 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift11EffectsAttrEE9has_valueEv Line | Count | Source | 324 | 148 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift10ExposeAttrEE9has_valueEv Line | Count | Source | 324 | 174 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift7CanTypeEE9has_valueEv Line | Count | Source | 324 | 201 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22ForeignAsyncConventionEE9has_valueEv Line | Count | Source | 324 | 5.36k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22ForeignErrorConventionEE9has_valueEv Line | Count | Source | 324 | 6.57k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: SILFunctionType.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEE9has_valueEv _ZNK4llvm8OptionalIN5swift14AnyFunctionRefEE9has_valueEv Line | Count | Source | 324 | 505 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift24DifferentiationThunkKindEE9has_valueEv Line | Count | Source | 324 | 40 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift8Lowering18AbstractionPatternEE9has_valueEv Line | Count | Source | 324 | 3.70k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift18SILDynamicCastKind7innertyEE9has_valueEv Line | Count | Source | 324 | 70.8k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift18SILDynamicCastKindEE9has_valueEv Line | Count | Source | 324 | 69.2k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift20SILModuleConventionsEE9has_valueEv Line | Count | Source | 324 | 954 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift18ValueOwnershipKindEE9has_valueEv Line | Count | Source | 324 | 283 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: SILProfiler.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_111CounterExprEE9has_valueEv _ZNK4llvm8OptionalIN5swift16SILSymbolVisitor11DynamicKindEE9has_valueEv Line | Count | Source | 324 | 48 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13OwnershipKind7innertyEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift13OwnershipKind7innertyEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13CapturedValueEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEE9has_valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNK4llvm8OptionalINS0_IZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEE9has_valueEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNK4llvm8OptionalIZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEE9has_valueEv _ZNK4llvm8OptionalIN5swift20AccessRepresentation4KindEE9has_valueEv Line | Count | Source | 324 | 4.15k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17AccessStorageCastEE9has_valueEv _ZNK4llvm8OptionalIN5swift13AccessStorageEE9has_valueEv Line | Count | Source | 324 | 5.87k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift10BranchInstEE9has_valueEv Line | Count | Source | 324 | 32 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: PrunedLiveness.cpp:_ZNK4llvm8OptionalINS0_IZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEE9has_valueEv Unexecuted instantiation: PrunedLiveness.cpp:_ZNK4llvm8OptionalIZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindE9has_valueEv _ZNK4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__15tupleIJjjEEEE9has_valueEv _ZNK4llvm8OptionalIPN5swift7OperandEE9has_valueEv Line | Count | Source | 324 | 351 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEE9has_valueEv Line | Count | Source | 324 | 476 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFvPN5swift7OperandEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12function_refIFvPN5swift13SILBasicBlockEEEEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEE9has_valueEv Line | Count | Source | 324 | 18 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11RequirementEE9has_valueEv Line | Count | Source | 324 | 3.03k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test12BoolArgumentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test12UIntArgumentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test8ArgumentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11TaggedUnionIJyxNS_9StringRefEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4test14StringArgumentEE9has_valueEv _ZNK4llvm8OptionalINS0_IN5swift12AccessorKindEEEE9has_valueEv Line | Count | Source | 324 | 84 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS0_IN5swift18SILInstructionKindEEEE9has_valueEv Line | Count | Source | 324 | 5.77k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift23OpenedExistentialAccessEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23OpenedExistentialAccessEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19CastConsumptionKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23StoreOwnershipQualifierEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift24AssignOwnershipQualifierEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19AssignByWrapperInst4ModeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16AssignOrInitInst4ModeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9SILParser19UnresolvedValueNameEE9has_valueEv _ZNK4llvm8OptionalIN5swift18SILInstructionKindEE9has_valueEv Line | Count | Source | 324 | 27 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS0_IN5swift10SILLinkageEEEE9has_valueEv Line | Count | Source | 324 | 24 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8coverage7CounterEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift34MarkUnresolvedReferenceBindingInst4KindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift22LoadOwnershipQualifierEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift19CastConsumptionKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift23StoreOwnershipQualifierEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift24AssignOwnershipQualifierEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints16ConstraintSystem15TypeMatchResultEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEE9has_valueEv Line | Count | Source | 324 | 609 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_8CaseStmtEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift20UnavailabilityReasonEE9has_valueEv Line | Count | Source | 324 | 405 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift13CaseLabelItemEE9has_valueEv _ZNK4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEE9has_valueEv Line | Count | Source | 324 | 57 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8ExprKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints13ConstraintFixEjEEE9has_valueEv Unexecuted instantiation: CSGen.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEE9has_valueEv Line | Count | Source | 324 | 1.24k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeEE9has_valueEv Line | Count | Source | 324 | 92 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: CSRanking.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121TypeBindingsToCompareEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeEE9has_valueEv Line | Count | Source | 324 | 20 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8TypeBaseEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15OptionalPayloadEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyEE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints25SingleValueStmtBranchKindEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21KnownFoundationEntityEE9has_valueEv _ZNK4llvm8OptionalIN5swift15AnyFunctionType5ParamEE9has_valueEv Line | Count | Source | 324 | 329 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17CompletionArgInfoEE9has_valueEv CSSimplify.cpp:_ZNK4llvm8OptionalINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS3_16TypeVariableTypeENS3_4TypeENS3_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEEE9has_valueEv Line | Count | Source | 324 | 1.09k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints14ConstraintKindEE9has_valueEv Line | Count | Source | 324 | 2.12k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints18MemberLookupResult14UnviableReasonEE9has_valueEv Line | Count | Source | 324 | 63 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIN5swift10IdentifierEEEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEE9has_valueEv Line | Count | Source | 324 | 576 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17CaseLabelItemInfoEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintEjEEE9has_valueEv Line | Count | Source | 324 | 68 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_18ConjunctionElementEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS4_11constraints17ConstraintLocatorEEEEjEEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints19TypeVariableBindingEE9has_valueEv Line | Count | Source | 324 | 86 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEE9has_valueEv Line | Count | Source | 324 | 630 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints18ConjunctionElementEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints9inference10BindingSetEE9has_valueEv Line | Count | Source | 324 | 886 | constexpr bool has_value() const { return Storage.has_value(); } |
CSStep.cpp:_ZNK4llvm8OptionalIZN5swift11constraints13ComponentStep4takeEbE8StepKindE9has_valueEv Line | Count | Source | 324 | 775 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEE9has_valueEv Line | Count | Source | 324 | 81 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEE9has_valueEv Line | Count | Source | 324 | 31 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintENS4_5ScoreEEEE9has_valueEv Line | Count | Source | 324 | 1.06k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEE9has_valueEv Line | Count | Source | 324 | 638 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints11FixBehaviorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__15tupleIJN5swift21ContextualTypePurposeENS3_4TypeES5_EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16FunctionArgumentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12TupleElementEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJNS1_4TypeEEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_12ArgumentListEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementEE9has_valueEv Unexecuted instantiation: CSDiagnostics.cpp:_ZNK4llvm8OptionalIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEE9has_valueEv Line | Count | Source | 324 | 3.07k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEE9has_valueEv Line | Count | Source | 324 | 9.04k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchEE9has_valueEv Line | Count | Source | 324 | 2.95k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEE9has_valueEv Line | Count | Source | 324 | 1.22k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift12LookupResultEE9has_valueEv Line | Count | Source | 324 | 57 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionEE9has_valueEv Line | Count | Source | 324 | 4.38k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement30ImplicitDynamicMemberSubscriptEE9has_valueEv Line | Count | Source | 324 | 2.95k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberEE9has_valueEv Line | Count | Source | 324 | 3.01k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15DynamicCallableEE9has_valueEv Line | Count | Source | 324 | 2.95k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEE9has_valueEv Line | Count | Source | 324 | 695 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIjPN5swift4ExprEEEE9has_valueEv Line | Count | Source | 324 | 15 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints7FixKindEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints16IUOReferenceKindEE9has_valueEv Line | Count | Source | 324 | 1.30k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints15ExpressionTimerEE9has_valueEv Line | Count | Source | 324 | 1.15k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints5ScoreEE9has_valueEv Line | Count | Source | 324 | 4.72k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints9ScoreKindEE9has_valueEv Line | Count | Source | 324 | 1.44k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13ApplyArgumentEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamEE9has_valueEv Line | Count | Source | 324 | 3 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints16SelectedOverloadEE9has_valueEv Line | Count | Source | 324 | 2.08k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints14OverloadChoiceEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementEE9has_valueEv Line | Count | Source | 324 | 4.29k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericEE9has_valueEv Line | Count | Source | 324 | 14.4k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift20GenericTypeParamTypeENS3_15RequirementKindEEEE9has_valueEv Line | Count | Source | 324 | 2.89k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints23AppliedBuilderTransformEE9has_valueEv _ZNK4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEE9has_valueEv Line | Count | Source | 324 | 1.12k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalI19RuntimeVersionCheckE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11DeclNameRefEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18InFlightDiagnosticEE9has_valueEv _ZNK4llvm8OptionalIN5swift21ContextualTypePurposeEE9has_valueEv Line | Count | Source | 324 | 224 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjPN5swift20GenericTypeParamTypeEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift26MagicIdentifierLiteralExpr4KindEE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23SyntacticTypoCorrectionEE9has_valueEv _ZNK4llvm8OptionalIN5swift19ExportabilityReasonEE9has_valueEv Line | Count | Source | 324 | 147 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalI35AbstractFunctionDeclLookupErrorKindE9has_valueEv Line | Count | Source | 324 | 10 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift4DiagIJEEEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJbNS1_4TypeEEEEE9has_valueEv Unexecuted instantiation: TypeCheckAvailability.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_119ReplacementDeclKindEE9has_valueEv _ZNK4llvm8OptionalIN5swift18DiagnosticBehaviorEE9has_valueEv Line | Count | Source | 324 | 253 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEE9has_valueEv _ZNK4llvm8OptionalIN5swift13SendableCheckEE9has_valueEv Line | Count | Source | 324 | 30 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12VarRefUseEnvEE9has_valueEv TypeCheckConcurrency.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121PartialApplyThunkInfoEE9has_valueEv Line | Count | Source | 324 | 130 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift15ConcreteDeclRefENS3_9SourceLocEEEE9has_valueEv Line | Count | Source | 324 | 54 | constexpr bool has_value() const { return Storage.has_value(); } |
TypeCheckConcurrency.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_126MemberIsolationPropagationEE9has_valueEv Line | Count | Source | 324 | 909 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22DispatchQueueOperationEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15ReferencedActorEE9has_valueEv _ZNK4llvm8OptionalINS0_IN5swift22DispatchQueueOperationEEEE9has_valueEv Line | Count | Source | 324 | 36 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEE9has_valueEv Line | Count | Source | 324 | 726 | constexpr bool has_value() const { return Storage.has_value(); } |
TypeCheckDecl.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121ImplicitlyFinalReasonEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22AutomaticEnumValueKindEE9has_valueEv _ZNK4llvm8OptionalIN5swift10ObjCReasonEE9has_valueEv Line | Count | Source | 324 | 323 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJjNS1_8DeclNameENS1_12ObjCSelectorEEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift18StaticSpellingKindEE9has_valueEv Line | Count | Source | 324 | 2.89k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift7LocatedINS1_18StaticSpellingKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjN5swift11SourceRangeEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ParamDeclEE9has_valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEE9has_valueEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_17ContextEE9has_valueEv _ZNK4llvm8OptionalIN5swift10EffectKindEE9has_valueEv Line | Count | Source | 324 | 204 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16BuiltinMacroKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23ExternalMacroDefinitionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11SourceRangeEE9has_valueEv _ZNK4llvm8OptionalIPN5swift7PatternEE9has_valueEv Line | Count | Source | 324 | 157 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift15CheckedCastKindEE9has_valueEv Line | Count | Source | 324 | 23 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEE9has_valueEv Line | Count | Source | 324 | 113 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16RequirementMatchEE9has_valueEv Line | Count | Source | 324 | 4.18k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14AutoDiffConfigEE9has_valueEv Line | Count | Source | 324 | 9 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift11AccessScopeEbEEE9has_valueEv Line | Count | Source | 324 | 136 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11AccessScopeEE9has_valueEv Line | Count | Source | 324 | 597 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift18ConformanceCheckerEE9has_valueEv Line | Count | Source | 324 | 143 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEE9has_valueEv Line | Count | Source | 324 | 7.18k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEE9has_valueEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK4llvm8OptionalIZL20diagnoseUnstableNamePN5swift19ProtocolConformanceEPNS1_9ClassDeclEE16UnstableNameKindE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8DeclNameEE9has_valueEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionEE9has_valueEv _ZNK4llvm8OptionalIN5swift26KnownDerivableProtocolKindEE9has_valueEv Line | Count | Source | 324 | 223 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEE9has_valueEv Line | Count | Source | 324 | 80.6k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift11constraints8SolutionEE9has_valueEv Line | Count | Source | 324 | 1.80k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift4TypeEE9has_valueEv Line | Count | Source | 324 | 223k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19AbstractTypeWitnessEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19TypeWitnessConflictEE9has_valueEv _ZNK4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEE9has_valueEv Line | Count | Source | 324 | 174 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25RegexCaptureStructureCodeEE9has_valueEv _ZNK4llvm8OptionalIN5swift25PropertyWrapperMutabilityEE9has_valueEv Line | Count | Source | 324 | 91 | constexpr bool has_value() const { return Storage.has_value(); } |
TypeCheckStorage.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEE9has_valueEv Line | Count | Source | 324 | 71 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25PropertyWrapperLValuenessEE9has_valueEv TypeCheckSwitchStmt.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEE9has_valueEv Line | Count | Source | 324 | 140 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14TypeAttributes19OpaqueReturnTypeRefEE9has_valueEv Line | Count | Source | 324 | 99 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS0_IN5swift29SILFunctionTypeRepresentationEEEE9has_valueEv Line | Count | Source | 324 | 276 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift26FunctionTypeRepresentationEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift26FunctionTypeRepresentationEE9has_valueEv Line | Count | Source | 324 | 54 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift19TypeResolutionStageEE9has_valueEv Line | Count | Source | 324 | 52 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16FunctionTypeReprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift13SanitizerKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13SanitizerKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_24SanitizerCoverageOptions4TypeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallStringILj128EEEE9has_valueEv _ZNK4llvm8OptionalIN5clang10CASOptionsEE9has_valueEv Line | Count | Source | 324 | 87 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5clang6ModuleEE9has_valueEv Line | Count | Source | 324 | 24 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIN5swift14ImportedModuleEEEE9has_valueEv Line | Count | Source | 324 | 122 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift10IdentifierEE9has_valueEv Line | Count | Source | 324 | 246 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5clang8QualTypeEE9has_valueEv Line | Count | Source | 324 | 18 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEE9has_valueEv Line | Count | Source | 324 | 154 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEE9has_valueEv Line | Count | Source | 324 | 33 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang12CXXScopeSpecEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift12DeclBaseNameEE9has_valueEv _ZNK4llvm8OptionalIN5swift19CtorInitializerKindEE9has_valueEv Line | Count | Source | 324 | 1.05k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift8importer12ImportedNameEE9has_valueEv Line | Count | Source | 324 | 47 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang13SwiftAttrAttrEE9has_valueEv _ZNK4llvm8OptionalIN5swift12PlatformKindEE9has_valueEv Line | Count | Source | 324 | 335 | constexpr bool has_value() const { return Storage.has_value(); } |
ImportDecl.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift12PlatformKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_6APSIntEN5swift4TypeEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignErrorConvention4KindEE9has_valueEv ImportName.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEE9has_valueEv Line | Count | Source | 324 | 710 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: ImportType.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_112ImportResultEE9has_valueEv _ZNK4llvm8OptionalIN5swift18MappedTypeNameKindEE9has_valueEv Line | Count | Source | 324 | 15 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5clang8EnumDeclEE9has_valueEv _ZNK4llvm8OptionalIN5swift13ClangImporter14Implementation25ImportParameterTypeResultEE9has_valueEv Line | Count | Source | 324 | 18 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEE9has_valueEv Line | Count | Source | 324 | 531 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21EffectiveClangContextEE9has_valueEv _ZNK4llvm8OptionalIN5swift3tokEE9has_valueEv Line | Count | Source | 324 | 768 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift21DiagnosticTransactionEE9has_valueEv Line | Count | Source | 324 | 17 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14SpecializeAttr18SpecializationKindEE9has_valueEv Unexecuted instantiation: ParseDecl.cpp:_ZNK4llvm8OptionalIZN5swift6Parser33parseStorageRestrictionsAttributeENS1_9SourceLocES3_E10AccessKindE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10InlineKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16OptimizationModeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15ExclusivityAttr4ModeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15NonSendableKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift4DiagIJNS_9StringRefES3_EEEE9has_valueEv _ZNK4llvm8OptionalIN5swift6Parser13ContextChangeEE9has_valueEv Line | Count | Source | 324 | 199 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13AssociativityEE9has_valueEv Line | Count | Source | 324 | 84 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: ParseDecl.cpp:_ZNK4llvm8OptionalIZN5swift6Parser33parseExtendedAvailabilitySpecListENS1_9SourceLocES3_NS_9StringRefEE3$_4E9has_valueEv _ZNK4llvm8OptionalIN5swift21DifferentiabilityKindEE9has_valueEv Line | Count | Source | 324 | 2.59k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift11AccessLevelEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift9MacroRoleEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift27MacroIntroducedDeclNameKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift27MacroIntroducedDeclNameKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift13AssociativityEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21EditorPlaceholderDataEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20AvailabilitySpecKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21PlatformConditionKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21PlatformConditionKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15TuplePatternEltEE9has_valueEv _ZNK4llvm8OptionalIN5swift12StableHasherEE9has_valueEv Line | Count | Source | 324 | 8.35k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__16vectorIN5swift5TokenENS1_9allocatorIS4_EEEEE9has_valueEv Line | Count | Source | 324 | 17 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIN5swift7ASTNodeEEEE9has_valueEv Line | Count | Source | 324 | 131 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6Parser17BacktrackingScopeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19PatternBindingStateEE9has_valueEv _ZNK4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEE9has_valueEv Line | Count | Source | 324 | 215 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22MetatypeRepresentationEE9has_valueEv Line | Count | Source | 324 | 12.5k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift13SILResultInfoEE9has_valueEv Line | Count | Source | 324 | 10.0k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift24UnexpectedClangTypeErrorEE9has_valueEv Line | Count | Source | 324 | 109k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25ForeignRepresentationInfoEE9has_valueEv _ZNK4llvm8OptionalIN5swift18ClangTypeConverterEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift38PropertyWrapperSynthesizedPropertyKindEE9has_valueEv Line | Count | Source | 324 | 48 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift21KnownFoundationEntityEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIN5clang26dependency_directives_scan9DirectiveELj20EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang7CFGStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang23HeaderIncludeFormatKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle18ImplFunctionResultINS1_4TypeEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle26ImplMetatypeRepresentationEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle10ASTBuilder17ForeignModuleKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13ClangTypeKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15TypeLookupErrorEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle23ImplParameterConventionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle30ImplParameterDifferentiabilityEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle20ImplResultConventionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle27ImplResultDifferentiabilityEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift8Demangle10ASTBuilder17ForeignModuleKindEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_I20LayoutConstraintKindEEE9has_valueEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEE9has_valueEv Line | Count | Source | 324 | 685 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIcE9has_valueEv Line | Count | Source | 324 | 1.92k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift14SpecializeAttrEE9has_valueEv Line | Count | Source | 324 | 343 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift20TypeTransformContextEE9has_valueEv Line | Count | Source | 324 | 716 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S8_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift23OriginallyDefinedInAttrEE9has_valueEv _ZNK4llvm8OptionalIPKN5swift23SynthesizedProtocolAttrEE9has_valueEv Line | Count | Source | 324 | 5 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift9SourceLocEE9has_valueEv Line | Count | Source | 324 | 1.29k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift15CharSourceRangeEE9has_valueEv Line | Count | Source | 324 | 32.9k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ErrorExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14NilLiteralExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift18BooleanLiteralExprEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift18IntegerLiteralExprEE9has_valueEv Line | Count | Source | 324 | 53 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16FloatLiteralExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17StringLiteralExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift26MagicIdentifierLiteralExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift29InterpolatedStringLiteralExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16RegexLiteralExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17ObjectLiteralExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift21DiscardAssignmentExprEE9has_valueEv Line | Count | Source | 324 | 6 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift11DeclRefExprEE9has_valueEv Line | Count | Source | 324 | 266 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12SuperRefExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift8TypeExprEE9has_valueEv Line | Count | Source | 324 | 58 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift27OtherConstructorDeclRefExprEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift24DotSyntaxBaseIgnoredExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21OverloadedDeclRefExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift21UnresolvedDeclRefExprEE9has_valueEv Line | Count | Source | 324 | 188 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift13MemberRefExprEE9has_valueEv Line | Count | Source | 324 | 109 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift13SubscriptExprEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20DynamicMemberRefExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20DynamicSubscriptExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift24UnresolvedSpecializeExprEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20UnresolvedMemberExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift17UnresolvedDotExprEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift12SequenceExprEE9has_valueEv Line | Count | Source | 324 | 38 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift9ParenExprEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11DotSelfExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9AwaitExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10BorrowExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift31UnresolvedMemberChainResultExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8CopyExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ConsumeExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift7TryExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12ForceTryExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15OptionalTryExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift9TupleExprEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ArrayExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14DictionaryExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22KeyPathApplicationExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16TupleElementExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15CaptureListExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ClosureExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15AutoClosureExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift9InOutExprEE9has_valueEv Line | Count | Source | 324 | 48 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19VarargExpansionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17PackExpansionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PackElementExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19MaterializePackExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15DynamicTypeExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift27RebindSelfInConstructorExprEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15OpaqueValueExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift35PropertyWrapperValuePlaceholderExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift26AppliedPropertyWrapperExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift19DefaultArgumentExprEE9has_valueEv Line | Count | Source | 324 | 21 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16BindOptionalExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22OptionalEvaluationExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14ForceValueExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19OpenExistentialExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift28MakeTemporarilyEscapableExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift8CallExprEE9has_valueEv Line | Count | Source | 324 | 96 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PrefixUnaryExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16PostfixUnaryExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift10BinaryExprEE9has_valueEv Line | Count | Source | 324 | 17 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift17DotSyntaxCallExprEE9has_valueEv Line | Count | Source | 324 | 33 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift22ConstructorRefCallExprEE9has_valueEv Line | Count | Source | 324 | 23 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift8LoadExprEE9has_valueEv Line | Count | Source | 324 | 3 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21ABISafeConversionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20DestructureTupleExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift28UnresolvedTypeConversionExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift22FunctionConversionExprEE9has_valueEv Line | Count | Source | 324 | 3 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift31CovariantFunctionConversionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift29CovariantReturnConversionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22MetatypeConversionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift30CollectionUpcastConversionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ErasureExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22AnyHashableErasureExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16BridgeToObjCExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18BridgeFromObjCExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift29ConditionalBridgeFromObjCExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift17DerivedToBaseExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20ArchetypeToSuperExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift22InjectIntoOptionalExprEE9has_valueEv Line | Count | Source | 324 | 5 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift25ClassMetatypeToObjectExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift31ExistentialMetatypeToObjectExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift28ProtocolMetatypeToObjectExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18InOutToPointerExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18ArrayToPointerExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19StringToPointerExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift20PointerToPointerExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift27ForeignObjectConversionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift23UnevaluatedInstanceExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift22UnderlyingToOpaqueExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift26DifferentiableFunctionExprEE9has_valueEv Line | Count | Source | 324 | 3 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18LinearFunctionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift41DifferentiableFunctionExtractOriginalExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift33LinearFunctionExtractOriginalExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift34LinearToDifferentiableFunctionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21ForcedCheckedCastExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift26ConditionalCheckedCastExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6IsExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10CoerceExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ArrowExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11TernaryExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14EnumIsCaseExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift10AssignExprEE9has_valueEv Line | Count | Source | 324 | 40 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18CodeCompletionExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21UnresolvedPatternExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19LazyInitializerExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift21EditorPlaceholderExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift16ObjCSelectorExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11KeyPathExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19SingleValueStmtExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift14KeyPathDotExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift10OneWayExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift7TapExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12TypeJoinExprEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift18MacroExpansionExprEE9has_valueEv _ZNK4llvm8OptionalIPN5swift10ReturnStmtEE9has_valueEv Line | Count | Source | 324 | 137 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8ThenStmtEE9has_valueEv _ZNK4llvm8OptionalIPN5swift9YieldStmtEE9has_valueEv Line | Count | Source | 324 | 25 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9DeferStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6IfStmtEE9has_valueEv _ZNK4llvm8OptionalIPN5swift9GuardStmtEE9has_valueEv Line | Count | Source | 324 | 2 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9WhileStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6DoStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11DoCatchStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15RepeatWhileStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ForEachStmtEE9has_valueEv _ZNK4llvm8OptionalIPN5swift10SwitchStmtEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9BreakStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift12ContinueStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15FallthroughStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift8FailStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9ThrowStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11DiscardStmtEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift15PoundAssertStmtEE9has_valueEv _ZNK4llvm8OptionalIPN5swift12ParenPatternEE9has_valueEv Line | Count | Source | 324 | 10 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift12TuplePatternEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift10AnyPatternEE9has_valueEv Line | Count | Source | 324 | 4 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift12TypedPatternEE9has_valueEv Line | Count | Source | 324 | 855 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift14BindingPatternEE9has_valueEv Line | Count | Source | 324 | 8 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift9IsPatternEE9has_valueEv _ZNK4llvm8OptionalIPN5swift18EnumElementPatternEE9has_valueEv Line | Count | Source | 324 | 19 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift19OptionalSomePatternEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11BoolPatternEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11ExprPatternEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIjjEEE9has_valueEv Line | Count | Source | 324 | 896 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift8TypeReprEjEEE9has_valueEv _ZNK4llvm8OptionalIN5swift12AccessorKindEE9has_valueEv Line | Count | Source | 324 | 598 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift12TypeAttrKindEE9has_valueEv Line | Count | Source | 324 | 6.17k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift12DeclAttrKindEE9has_valueEv Line | Count | Source | 324 | 34.8k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift16GenericSignatureEE9has_valueEv Line | Count | Source | 324 | 44.7k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift11IndexSubsetEE9has_valueEv Line | Count | Source | 324 | 190 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift15NonSendableAttrEE9has_valueEv Line | Count | Source | 324 | 5 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEE9has_valueEv Line | Count | Source | 324 | 12 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEE9has_valueEv _ZNK4llvm8OptionalINS0_IN5swift30AutoDiffDerivativeFunctionKind7innertyEEEE9has_valueEv Line | Count | Source | 324 | 36 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift36DifferentiabilityWitnessFunctionKind7innertyEEEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEE9has_valueEv Line | Count | Source | 324 | 325 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift19AvailabilityContextEE9has_valueEv Line | Count | Source | 324 | 6.54k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_14AtomicOrderingEE9has_valueEv ClangTypeConverter.cpp:_ZNK4llvm8OptionalIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS1_16BoundGenericTypeEE10StructKindE9has_valueEv Line | Count | Source | 324 | 56 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift18ExternalSourceLocs7RawLocsEE9has_valueEv Line | Count | Source | 324 | 31 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_13TinyPtrVectorIPN5swift9ValueDeclEEEE9has_valueEv Line | Count | Source | 324 | 18.9k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift20ImplicitMemberActionEE9has_valueEv Line | Count | Source | 324 | 242 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift8CaseStmtEPNS3_7PatternEEEE9has_valueEv Line | Count | Source | 324 | 6.93k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14ParamSpecifierEE9has_valueEv Line | Count | Source | 324 | 15.6k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift11InitializerEE9has_valueEv _ZNK4llvm8OptionalIPN5swift18ExternalSourceLocsEE9has_valueEv Line | Count | Source | 324 | 216 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift16GenericParamListEE9has_valueEv Line | Count | Source | 324 | 29.2k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift15NominalTypeDeclEE9has_valueEv Line | Count | Source | 324 | 25 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEE9has_valueEv Line | Count | Source | 324 | 13 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift19PatternBindingEntryEE9has_valueEv Line | Count | Source | 324 | 46 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift12AccessorDeclEE9has_valueEv Line | Count | Source | 324 | 73 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift19OpaqueReadOwnershipEE9has_valueEv Line | Count | Source | 324 | 615 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift14DestructorDeclEE9has_valueEv Line | Count | Source | 324 | 247 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIPN5swift12ProtocolDeclEEEE9has_valueEv Line | Count | Source | 324 | 3.82k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINS_8ArrayRefIPN5swift9ValueDeclEEEE9has_valueEv Line | Count | Source | 324 | 124 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift15StorageImplInfoEE9has_valueEv Line | Count | Source | 324 | 2.68k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift12NamedPatternEE9has_valueEv Line | Count | Source | 324 | 938 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift4ExprEE9has_valueEv Line | Count | Source | 324 | 14 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift18BodyAndFingerprintEE9has_valueEv Line | Count | Source | 324 | 31.9k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift9BraceStmtEE9has_valueEv Line | Count | Source | 324 | 545 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift14SelfAccessKindEE9has_valueEv Line | Count | Source | 324 | 10.8k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalINSt3__15tupleIJEEEE9has_valueEv Line | Count | Source | 324 | 276 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPKN5swift13MacroRoleAttrEE9has_valueEv _ZNK4llvm8OptionalIPN5swift4DeclEE9has_valueEv Line | Count | Source | 324 | 327 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEE9has_valueEv _ZNK4llvm8OptionalIN5swift14DiagnosticInfoEE9has_valueEv Line | Count | Source | 324 | 45 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift6markup10ParamFieldEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10RawCommentEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIPN5swift25fine_grained_dependencies22SourceFileDepGraphNodeEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25fine_grained_dependencies8NodeKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25fine_grained_dependencies10DeclAspectEE9has_valueEv _ZNK4llvm8OptionalIN5swift9rewriting6SymbolEE9has_valueEv Line | Count | Source | 324 | 100k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift18ArtificialMainKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift10ModuleDeclENS3_10IdentifierEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEE9has_valueEv Line | Count | Source | 324 | 31.0k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift10CustomAttrEE9has_valueEv Line | Count | Source | 324 | 5.20k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift23SourceFileParsingResultEE9has_valueEv Line | Count | Source | 324 | 131 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPKN5swift20SPIAccessControlAttrEE9has_valueEv Line | Count | Source | 324 | 646 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20ModuleDependencyKindEE9has_valueEv _ZNK4llvm8OptionalIPN5swift9ClassDeclEE9has_valueEv Line | Count | Source | 324 | 12.8k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ExprPatternMatchResultEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIN5swift10IdentifierENS2_12PluginLoader11PluginEntryENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S5_EEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift18TypeWitnessAndDeclEE9has_valueEv Line | Count | Source | 324 | 1 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift7WitnessEE9has_valueEv Line | Count | Source | 324 | 108 | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIPN5swift9rewriting11PropertyBagEE9has_valueEv Line | Count | Source | 324 | 56.8k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift9rewriting10DebugFlagsEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift9rewriting10DebugFlagsEE9has_valueEv _ZNK4llvm8OptionalINS_8ArrayRefIN5swift9rewriting4TermEEEE9has_valueEv Line | Count | Source | 324 | 1.54k | constexpr bool has_value() const { return Storage.has_value(); } |
_ZNK4llvm8OptionalIN5swift22ProtocolConformanceRefEE9has_valueEv Line | Count | Source | 324 | 471 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19CanGenericSignatureEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift25PrecedenceGroupDescriptor13PathDirectionEE9has_valueEv _ZNK4llvm8OptionalINSt3__14pairIPN5swift13ArchetypeTypeEPNS3_23OpaqueTypeArchetypeTypeEEEE9has_valueEv Line | Count | Source | 324 | 59 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_14raw_fd_ostreamEE9has_valueEv _ZNK4llvm8OptionalIN5swift10file_types2IDEE9has_valueEv Line | Count | Source | 324 | 4.78k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS0_IN5swift7FeatureEEEE9has_valueEv _ZNK4llvm8OptionalINS0_INS_9StringRefEEEE9has_valueEv Line | Count | Source | 324 | 2.94k | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefINS_9StringRefEEEE9has_valueEv _ZNK4llvm8OptionalIN5swift19GeneratedSourceInfoEE9has_valueEv Line | Count | Source | 324 | 607 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEEE9has_valueEv _ZNK4llvm8OptionalINSt3__16vectorIiNS1_9allocatorIiEEEEE9has_valueEv Line | Count | Source | 324 | 7 | constexpr bool has_value() const { return Storage.has_value(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16BlockListKeyKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15BlockListActionEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle4Node4KindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle16ValueWitnessKindEE9has_valueEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift8Demangle10DirectnessEE9has_valueEv |
325 | | LLVM_DEPRECATED("Use has_value instead.", "has_value") |
326 | 0 | constexpr bool hasValue() const { |
327 | 0 | return Storage.has_value(); |
328 | 0 | } Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEE8hasValueEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEE8hasValueEv |
329 | 9.11k | constexpr const T *operator->() const { return getPointer(); }Unexecuted instantiation: _ZNK4llvm8OptionalINS_5AlignEEptEv _ZNK4llvm8OptionalIN5clang12FileEntryRefEEptEv Line | Count | Source | 329 | 6.97k | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6DIFile12ChecksumInfoIPNS_8MDStringEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift6driver3Job16ResponseFileInfoEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__16vectorIPKN5swift25fine_grained_dependencies18ModuleDepGraphNodeENS1_9allocatorIS7_EEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift15DiagnosticQueueEEptEv _ZNK4llvm8OptionalIN5swift16FixedOperandListILj1EEEEptEv Line | Count | Source | 329 | 1.07k | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_8DenseMapIPKNS_8MetadataENS_13TrackingMDRefENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S5_EEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINS_8ArrayRefIN5clang19TemplateArgumentLocEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang4Sema20ImmediateDiagBuilderEEptEv DiagnosticVerifier.cpp:_ZNK4llvm8OptionalIZL23parseExpectedFixItRangeRNS_9StringRefEjNS_12function_refIFvPKcRKNS_5TwineEEEEE19ParsedLineAndColumnEptEv Line | Count | Source | 329 | 24 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5clang10CASOptionsEEptEv _ZNK4llvm8OptionalIN5swift5irgen15FunctionPointerEEptEv Line | Count | Source | 329 | 17 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift14TypeImportInfoINS_9StringRefEEEEptEv Unexecuted instantiation: GenValueWitness.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetails12DirectResultEEptEv _ZNK4llvm8OptionalIN5swift5irgen4SizeEEptEv Line | Count | Source | 329 | 16 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift23ConcreteExistentialInfoEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEptEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEEptEv Unexecuted instantiation: Formatting.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift5TokenEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalINSt3__14pairIbbEEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift13OutputFileMapEEptEv _ZNK4llvm8OptionalIN5swift14ImportedModuleEEptEv Line | Count | Source | 329 | 34 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignAsyncConventionEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift22ForeignErrorConventionEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift17ProfileCounterRefEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift10ProjectionEEptEv _ZNK4llvm8OptionalIN5swift11constraints5ScoreEEptEv Line | Count | Source | 329 | 2 | constexpr const T *operator->() const { return getPointer(); } |
_ZNK4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintENS4_5ScoreEEEEptEv Line | Count | Source | 329 | 584 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEptEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNK4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEptEv _ZNK4llvm8OptionalIN5swift14AnyFunctionRefEEptEv Line | Count | Source | 329 | 140 | constexpr const T *operator->() const { return getPointer(); } |
_ZNK4llvm8OptionalIN5swift22RequirementEnvironmentEEptEv Line | Count | Source | 329 | 234 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift11RequirementEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19AbstractTypeWitnessEEptEv Unexecuted instantiation: _ZNK4llvm8OptionalIN5swift19TypeWitnessConflictEEptEv _ZNK4llvm8OptionalINS_12VersionTupleEEptEv Line | Count | Source | 329 | 1 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_3cas5CASIDEEptEv _ZNK4llvm8OptionalIN5swift20TypeTransformContextEEptEv Line | Count | Source | 329 | 1 | constexpr const T *operator->() const { return getPointer(); } |
Unexecuted instantiation: _ZNK4llvm8OptionalINS_6TripleEEptEv _ZNK4llvm8OptionalIN5swift9rewriting6SymbolEEptEv Line | Count | Source | 329 | 6 | constexpr const T *operator->() const { return getPointer(); } |
|
330 | 198k | T *operator->() { return getPointer(); }_ZN4llvm8OptionalIN5swift10DiagnosticEEptEv Line | Count | Source | 330 | 57 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINS_5AlignEEptEv Line | Count | Source | 330 | 1 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_6DIFile12ChecksumInfoINS_9StringRefEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINS_13DIDerivedType11PtrAuthDataEEptEv _ZN4llvm8OptionalIN5swift12ObjCSelectorEEptEv Line | Count | Source | 330 | 14 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8ArgumentEEptEv _ZN4llvm8OptionalIN5swift15DiagnosticQueueEEptEv Line | Count | Source | 330 | 16.9k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift16SILDebugVariableEEptEv Line | Count | Source | 330 | 11.8k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift16FixedOperandListILj1EEEEptEv Line | Count | Source | 330 | 341 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueES4_EEEptEv Line | Count | Source | 330 | 12 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22SwiftDependencyTrackerEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEEptEv Unexecuted instantiation: Index.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_19MappedLocEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider15EnumElementInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider18MethodDispatchInfo24PointerAuthDiscriminatorEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEEptEv _ZN4llvm8OptionalIN5swift24FrontendInputsAndOutputsEEptEv Line | Count | Source | 330 | 2 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEptEv Line | Count | Source | 330 | 29 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift19OutputFilesComputerEEptEv Line | Count | Source | 330 | 11 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEEptEv Line | Count | Source | 330 | 12 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZN4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryEptEv Unexecuted instantiation: DiagnosticVerifier.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_122ExpectedDiagnosticInfo24ExpectedEducationalNotesEEptEv _ZN4llvm8OptionalIN5swift13ModuleBuffersEEptEv Line | Count | Source | 330 | 73 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_9StringRefEEptEv _ZN4llvm8OptionalIN5swift7version7VersionEEptEv Line | Count | Source | 330 | 1 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang3cas21CompileJobCacheResult6OutputEEptEv _ZN4llvm8OptionalINS_6TripleEEptEv Line | Count | Source | 330 | 908 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen22NativeConventionSchemaEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen7AddressEEptEv _ZN4llvm8OptionalIN5swift7CanTypeEEptEv Line | Count | Source | 330 | 33 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen10LinkEntityEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen12StackAddressEEptEv GenMeta.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEEptEv Line | Count | Source | 330 | 6 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SubstitutionMapEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen19TypeEntityReferenceEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen14FulfillmentMapEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEEptEv Unexecuted instantiation: GenValueWitness.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_131BoundGenericTypeCharacteristicsEEptEv _ZN4llvm8OptionalINS_3vfs10OutputFileEEptEv Line | Count | Source | 330 | 4 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: IRGen.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119SymbolSourcesToEmitEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang19ASTSourceDescriptorEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINS_12DIExpression12FragmentInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen4SizeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5irgen9AlignmentEEptEv _ZN4llvm8OptionalIN5swift18DiverseValueBufferINS1_8Lowering7CleanupEEEEptEv Line | Count | Source | 330 | 153 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering17SwitchEnumBuilder15DefaultCaseDataEEptEv _ZN4llvm8OptionalIN5swift10SILDeclRefEEptEv Line | Count | Source | 330 | 1.94k | T *operator->() { return getPointer(); } |
SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_18CallSiteEEptEv Line | Count | Source | 330 | 355 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering14CalleeTypeInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering13ArgumentScopeEEptEv _ZN4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEptEv Line | Count | Source | 330 | 116 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering12ManagedValueEEptEv SILGenApply.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_16CalleeEEptEv Line | Count | Source | 330 | 23 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering20LogicalPathComponent13AccessStorageEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEEptEv SILGenPoly.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113ResultPlannerEEptEv Line | Count | Source | 330 | 50 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ActorIsolationEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEEptEv _ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEptEv Line | Count | Source | 330 | 930 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift16MatchingSetFlagsEEptEv Line | Count | Source | 330 | 454 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEptEv Line | Count | Source | 330 | 1.02k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEptEv Line | Count | Source | 330 | 17.2k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEEptEv _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEptEv Line | Count | Source | 330 | 9.34k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift14ProjectionPathEEptEv Line | Count | Source | 330 | 4 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift14SILVTableEntryEEptEv Line | Count | Source | 330 | 7 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEEptEv _ZN4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEptEv Line | Count | Source | 330 | 30 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift16SILParameterInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift9ValueBase25DefiningInstructionResultEEptEv Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEEptEv _ZN4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_14AutoDiffConfigEEEEptEv Line | Count | Source | 330 | 16 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: FlowIsolation.cpp:_ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockEN12_GLOBAL__N_15State4KindEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift28FieldSensitivePrunedLiveness17IsInterestingUserEEEEptEv Unexecuted instantiation: MoveOnlyBorrowToDestructureUtils.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_119AvailableValueStoreEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEptEv _ZN4llvm8OptionalINSt3__14pairIN5swift7SILTypeEjEEEptEv Line | Count | Source | 330 | 88 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13SymbolicValueEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13BorrowedValueEEptEv _ZN4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEEptEv Line | Count | Source | 330 | 272 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalI20ConcreteArgumentCopyEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21ValueLifetimeAnalysisEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15SILPrintContextEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift9ApplySiteENS_11SmallVectorIjLj8EEEEEEptEv _ZN4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEptEv Line | Count | Source | 330 | 359 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEptEv Line | Count | Source | 330 | 30 | T *operator->() { return getPointer(); } |
SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_120StorageStateTrackingINS1_10LiveValuesEEEEptEv Line | Count | Source | 330 | 86 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12siloptimizer7CleanupIvJPNS1_14SILInstructionEEEEEptEv Unexecuted instantiation: SILMem2Reg.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEEptEv _ZN4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEEptEv Line | Count | Source | 330 | 6 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift13BasicBlockSetEEptEv Line | Count | Source | 330 | 5 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13LoadOperationEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockES5_EEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ConcreteExistentialInfoEEptEv _ZN4llvm8OptionalIN5swift25FindLocalApplySitesResultEEptEv Line | Count | Source | 330 | 3.44k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN21LexicalDestroyFolding5MatchEEptEv Unexecuted instantiation: SILInliner.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_114BeginApplySiteEEptEv Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_115ContextOverride8OverrideEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift5TokenEEptEv Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112TrailingInfoEEptEv Unexecuted instantiation: Formatting.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift17ReferenceMetaDataEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedIPNS1_12ArgumentListEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift3sys22TaskProcessInformation13ResourceUsageEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13OutputFileMapEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift20ModuleDependencyInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeEjEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExpandedMacroDefinitionEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14ImportedModuleEEptEv _ZN4llvm8OptionalIN5swift12TangentSpaceEEptEv Line | Count | Source | 330 | 620 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: SILFunctionType.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_117DestructureInputs15ForeignSelfInfoEEptEv _ZN4llvm8OptionalIN5swift14AnyFunctionRefEEptEv Line | Count | Source | 330 | 472 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7SILTypeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SILLocationEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13CapturedValueEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift13AccessStorageEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker5ErrorEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEEptEv _ZN4llvm8OptionalIN5swift11RequirementEEptEv Line | Count | Source | 330 | 3.32k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11TaggedUnionIJyxNS_9StringRefEEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_8CaseStmtEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints16ConstraintSystem15TypeMatchResultEEptEv _ZN4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEptEv Line | Count | Source | 330 | 361 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclEPNS3_9BraceStmtEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement19SynthesizedArgumentEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints13ConstraintFixEjEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints23AppliedBuilderTransformEEptEv Unexecuted instantiation: CSSyntacticElement.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_123SyntacticElementContextEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17CompletionArgInfoEEptEv _ZN4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEEptEv Line | Count | Source | 330 | 1.72k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21ConstructorMemberTypeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement20KeyPathDynamicMemberEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement17PackExpansionTypeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12TupleElementEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement9TupleTypeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement18ImplicitConversionEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement11ClosureBodyEEptEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14ContextualTypeEEptEv Line | Count | Source | 330 | 6 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift15AnyFunctionType5ParamEEptEv Line | Count | Source | 330 | 481 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13TernaryBranchEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11SourceRangeEEptEv _ZN4llvm8OptionalINSt3__14pairIPN5swift11constraints10ConstraintEjEEEptEv Line | Count | Source | 330 | 54 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_12PointerUnionIJPN5swift4ExprEPNS4_11constraints17ConstraintLocatorEEEEjEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints19TypeVariableBindingEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints18ConjunctionElementEEptEv _ZN4llvm8OptionalIN5swift11constraints9inference10BindingSetEEptEv Line | Count | Source | 330 | 19 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_19TypeVariableBindingEEEEptEv Line | Count | Source | 330 | 81 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairINS1_10unique_ptrIN5swift11constraints16ConstraintSystem11SolverScopeENS1_14default_deleteIS7_EEEENS5_17DisjunctionChoiceEEEEptEv Line | Count | Source | 330 | 29 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints15ConjunctionStep14SolverSnapshotEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21OpenedOpaqueArchetypeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift4ExprEPNS3_12ArgumentListEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement24TypeParameterRequirementEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21PatternBindingElementEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16SyntacticElementEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement21SingleValueStmtResultEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement12PatternMatchEEptEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEptEv Line | Count | Source | 330 | 6.48k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEEptEv Line | Count | Source | 330 | 287 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairIjPN5swift4ExprEEEEptEv Line | Count | Source | 330 | 15 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift11constraints15ExpressionTimerEEptEv Line | Count | Source | 330 | 614 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement14AnyRequirementEEptEv Line | Count | Source | 330 | 5.78k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement22ConformanceRequirementEEptEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement13OpenedGenericEEptEv Line | Count | Source | 330 | 2.89k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift11constraints16SelectedOverloadEEptEv Line | Count | Source | 330 | 1.87k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift12LookupResultEEptEv _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement15ApplyArgToParamEEptEv Line | Count | Source | 330 | 4 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints14OverloadChoiceEEptEv _ZN4llvm8OptionalINSt3__14pairIPN5swift20GenericTypeParamTypeENS3_15RequirementKindEEEEptEv Line | Count | Source | 330 | 576 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalI19RuntimeVersionCheckEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjPN5swift20GenericTypeParamTypeEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23SyntacticTypoCorrectionEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23CompletionContextFinder8FallbackEEptEv Unexecuted instantiation: TypeCheckConcurrency.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_121PartialApplyThunkInfoEEptEv _ZN4llvm8OptionalINSt3__14pairIN5swift15ConcreteDeclRefENS3_9SourceLocEEEEptEv Line | Count | Source | 330 | 162 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift15ReferencedActorEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16GenericParameterEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift7LocatedINS1_18StaticSpellingKindEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10ObjCReasonEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIjN5swift11SourceRangeEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift4TypeEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift23ExternalMacroDefinitionEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEEptEv _ZN4llvm8OptionalIN5swift14AutoDiffConfigEEptEv Line | Count | Source | 330 | 10 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18InFlightDiagnosticEEptEv _ZN4llvm8OptionalIN5swift11AccessScopeEEptEv Line | Count | Source | 330 | 283 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift11constraints16ConstraintSystemEEptEv Line | Count | Source | 330 | 9.55k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift11constraints8SolutionEEptEv Line | Count | Source | 330 | 1.20k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEptEv Line | Count | Source | 330 | 596 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift15RequirementReprENS3_11RequirementEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TypeWitnessConflictEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEEptEv _ZN4llvm8OptionalIN5swift14TypeResolutionEEptEv Line | Count | Source | 330 | 155 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEptEv Unexecuted instantiation: TypeCheckStorage.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_134EnclosingSelfPropertyWrapperAccessEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift25PropertyWrapperMutabilityEEptEv TypeCheckSwitchStmt.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEptEv Line | Count | Source | 330 | 92 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift14TypeAttributes19OpaqueReturnTypeRefEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang10CASOptionsEEptEv _ZN4llvm8OptionalINS_8ArrayRefIN5swift14ImportedModuleEEEEptEv Line | Count | Source | 330 | 82 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5clang8QualTypeEEptEv Unexecuted instantiation: ImportDecl.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_112AccessorInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_6APSIntEN5swift4TypeEEEEptEv Unexecuted instantiation: ImportName.cpp:_ZN4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEEptEv _ZN4llvm8OptionalIN5swift13ClangImporter14Implementation25ImportParameterTypeResultEEptEv Line | Count | Source | 330 | 54 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21DiagnosticTransactionEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift10IdentifierEEptEv _ZN4llvm8OptionalIN5swift6Parser28CancellableBacktrackingScopeEEptEv Line | Count | Source | 330 | 10 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift21EditorPlaceholderDataEEptEv _ZN4llvm8OptionalIN5swift12StableHasherEEptEv Line | Count | Source | 330 | 11.8k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift10ASTExtInfoEEptEv Line | Count | Source | 330 | 56.8k | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift13SILResultInfoEEptEv Line | Count | Source | 330 | 63 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ClangTypeConverterEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5clang12FileEntryRefEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift8Demangle18ImplFunctionResultINS1_4TypeEEEEptEv _ZN4llvm8OptionalIN5swift20TypeTransformContextEEptEv Line | Count | Source | 330 | 2 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalIN5swift9SourceLocEEptEv Line | Count | Source | 330 | 9 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__14pairIjjEEEptEv Line | Count | Source | 330 | 856 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift8TypeReprEjEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift18ExternalSourceLocs7RawLocsEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19AvailabilityContextEEptEv _ZN4llvm8OptionalINSt3__14pairIPN5swift8CaseStmtEPNS3_7PatternEEEEptEv Line | Count | Source | 330 | 20 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignAsyncConventionEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift22ForeignErrorConventionEEptEv _ZN4llvm8OptionalIN5swift14DiagnosticInfoEEptEv Line | Count | Source | 330 | 180 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11CommentInfoEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIN5swift10RawCommentEPKNS3_4DeclEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairINS_9StringRefEPKN5swift4DeclEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalIN5swift11FingerprintEEptEv _ZN4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEptEv Line | Count | Source | 330 | 9.72k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEEptEv _ZN4llvm8OptionalIN5swift9rewriting6SymbolEEptEv Line | Count | Source | 330 | 14.4k | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalIN5swift19CanGenericSignatureEEptEv Unexecuted instantiation: _ZN4llvm8OptionalINSt3__14pairIPN5swift13ArchetypeTypeEPNS3_23OpaqueTypeArchetypeTypeEEEEptEv _ZN4llvm8OptionalIN5swift19GeneratedSourceInfoEEptEv Line | Count | Source | 330 | 3 | T *operator->() { return getPointer(); } |
_ZN4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEptEv Line | Count | Source | 330 | 142 | T *operator->() { return getPointer(); } |
Unexecuted instantiation: _ZN4llvm8OptionalINS_14iterator_rangeIN5swift10camel_case12WordIteratorEEEEptEv _ZN4llvm8OptionalINS_12VersionTupleEEptEv Line | Count | Source | 330 | 2 | T *operator->() { return getPointer(); } |
|
331 | 212k | constexpr const T &operator*() const & { return value(); }Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang17DirectoryEntryRefEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang12FileEntryRefEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPNS_8MDStringEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_12DIExpression12FragmentInfoEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_5AlignEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11FingerprintEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift19TangentPropertyInfo5ErrorEEdeEv _ZNKR4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEdeEv Line | Count | Source | 331 | 8 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift4UUIDEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift8TypeReprEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIbEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang11SourceRangeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang15CharSourceRangeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang9FixItHintEEdeEv _ZNKR4llvm8OptionalINSt3__16vectorIN5swift7ASTNodeENS1_9allocatorIS4_EEEEEdeEv Line | Count | Source | 331 | 114 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalINS_8ArrayRefIN5swift16AttributedImportINS2_14ImportedModuleEEEEEEdeEv Line | Count | Source | 331 | 8.90k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEEdeEv _ZNKR4llvm8OptionalIjEdeEv Line | Count | Source | 331 | 118k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift7SILTypeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11SILLocationEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift18ReferenceOwnershipEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_15MemoryBufferRefEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11AccessLevelEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIyEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21CopyPropagationOptionEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_7remarks14RemarkLocationEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPNS_5ValueEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_4wasm14WasmSymbolTypeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_8ArrayRefIN5clang19TemplateArgumentLocEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang4Sema20ImmediateDiagBuilderEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang14SourceLocationEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIhEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift16OptionalTypeKindEEdeEv _ZNKR4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEEdeEv Line | Count | Source | 331 | 74 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift13serialization6StatusEEdeEv _ZNKR4llvm8OptionalIN5swift7version7VersionEEdeEv Line | Count | Source | 331 | 1 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift5irgen22NativeConventionSchemaEEdeEv _ZNKR4llvm8OptionalIN5swift5irgen15FunctionPointerEEdeEv Line | Count | Source | 331 | 8 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift18GenericRequirementEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift5irgen14MetadataSourceEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_3cas5CASIDEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_8DenseMapIlNS_34PreservedCFGCheckerInstrumentation7BBGuardENS_12DenseMapInfoIlvEENS_6detail12DenseMapPairIlS3_EEEEEdeEv _ZNKR4llvm8OptionalIN5swift5irgen4SizeEEdeEv Line | Count | Source | 331 | 78 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEEdeEv _ZNKR4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEEdeEv Line | Count | Source | 331 | 158 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift9MacroRoleEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorIN5swift8Lowering12ManagedValueELj2EEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift20SILAccessEnforcementEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPKjEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift13SILAccessKindEEdeEv _ZNKR4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEEdeEv Line | Count | Source | 331 | 27 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_INS1_8SILValueEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift7OperandENS3_28FieldSensitivePrunedLiveness15InterestingUserEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_14SILInstructionENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_INS1_20DebugVarCarryingInstEEEEEEENS1_14FrozenMultiMapIjS6_NS4_6vectorIS8_NS4_9allocatorIS8_EEEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift20DebugVarCarryingInstEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIjNS0_IPNS1_22SingleValueInstructionEEEEEEENS1_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift22SingleValueInstructionEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_IS6_EEEEEENS1_14FrozenMultiMapIS6_S6_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift8SILValueEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEdeEv _ZNKR4llvm8OptionalIN5swift16BuiltinValueKindEEdeEv Line | Count | Source | 331 | 55.6k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift23ConcreteExistentialInfoEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairINS1_8SILValueENS0_INS1_11semanticarc7Context21ConsumingOperandStateEEEEEEENS1_14FrozenMultiMapIS6_S9_NS4_6vectorISB_NS4_9allocatorISB_EEEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11semanticarc7Context21ConsumingOperandStateEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift17AccessStorageCastEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22LoadOwnershipQualifierEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEEdeEv _ZNKR4llvm8OptionalIN5swift19CtorInitializerKindEEdeEv Line | Count | Source | 331 | 331 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalIN5swift21DifferentiabilityKindEEdeEv Line | Count | Source | 331 | 1.80k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang8QualTypeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang12TemplateNameEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22ForeignErrorConventionEEdeEv _ZNKR4llvm8OptionalIN5swift10SILDeclRefEEdeEv Line | Count | Source | 331 | 264 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalIN5swift9SourceLocEEdeEv Line | Count | Source | 331 | 185 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: SILProfiler.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift17ProfileCounterRefEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEEdeEv _ZNKR4llvm8OptionalIPN5swift7OperandEEdeEv Line | Count | Source | 331 | 245 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Line | Count | Source | 331 | 18 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift23KeyPathPatternComponentEEdeEv _ZNKR4llvm8OptionalIN5swift11constraints9ScoreKindEEdeEv Line | Count | Source | 331 | 1 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEEdeEv Line | Count | Source | 331 | 2 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINS_11SmallVectorINS1_IjLj1EEELj4EEEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints5ScoreEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21ContextualTypePurposeEEdeEv _ZNKR4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElementEEdeEv Line | Count | Source | 331 | 20.0k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints16IUOReferenceKindEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift19ExportabilityReasonEEdeEv _ZNKR4llvm8OptionalIN5swift13SendableCheckEEdeEv Line | Count | Source | 331 | 30 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22AutomaticEnumValueKindEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift22ForeignAsyncConventionEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift18StaticSpellingKindEEdeEv Unexecuted instantiation: TypeCheckEffects.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_121PotentialEffectReasonEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift16BuiltinMacroKindEEdeEv _ZNKR4llvm8OptionalIN5swift26KnownDerivableProtocolKindEEdeEv Line | Count | Source | 331 | 1.29k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalI20LayoutConstraintKindEdeEv _ZNKR4llvm8OptionalIN5swift19TypeResolutionStageEEdeEv Line | Count | Source | 331 | 34 | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift10IdentifierEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang6ModuleEEdeEv Unexecuted instantiation: ImportName.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_116AnySwiftNameAttrEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift21PlatformConditionKindEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12ObjCSelectorEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_3cas9ObjectRefEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12AccessorKindEEdeEv _ZNKR4llvm8OptionalINS_12VersionTupleEEdeEv Line | Count | Source | 331 | 92 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalIN5swift17KnownProtocolKindEEdeEv Line | Count | Source | 331 | 222 | constexpr const T &operator*() const & { return value(); } |
_ZNKR4llvm8OptionalIN5swift14ParamSpecifierEEdeEv Line | Count | Source | 331 | 4.62k | constexpr const T &operator*() const & { return value(); } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift11InitializerEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5swift30FileSpecificDiagnosticConsumer11SubconsumerEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift4TypeEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift9rewriting6SymbolEEdeEv Unexecuted instantiation: _ZNKR4llvm8OptionalINS_6TripleEEdeEv _ZNKR4llvm8OptionalIiEdeEv Line | Count | Source | 331 | 2 | constexpr const T &operator*() const & { return value(); } |
|
332 | 1.75M | T &operator*() & { return value(); }_ZNR4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEdeEv Line | Count | Source | 332 | 11 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIjEdeEv Line | Count | Source | 332 | 188k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKcEdeEv _ZNR4llvm8OptionalIN5swift10DiagnosticEEdeEv Line | Count | Source | 332 | 67 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_12DenormalMode16DenormalModeKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalItEdeEv _ZNR4llvm8OptionalINS_9StringRefEEdeEv Line | Count | Source | 332 | 4.27k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_5AlignEEdeEv _ZNR4llvm8OptionalIN5clang15NullabilityKindEEdeEv Line | Count | Source | 332 | 17 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift17KnownProtocolKindEEdeEv Line | Count | Source | 332 | 19.8k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11FingerprintEEdeEv Line | Count | Source | 332 | 1.05k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIbEdeEv Line | Count | Source | 332 | 118k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEEdeEv Line | Count | Source | 332 | 119 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19PatternBindingState4KindEEdeEv _ZNR4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEdeEv Line | Count | Source | 332 | 39 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_18ThreadPoolStrategyEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_3cas5CASIDEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11LangOptions23ASTVerifierOverrideKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift7FeatureEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21CopyPropagationOptionEEdeEv _ZNR4llvm8OptionalIN5swift11SILLocationEEdeEv Line | Count | Source | 332 | 170 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift16SILDebugVariableEEdeEv Line | Count | Source | 332 | 460 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift8SILValueEEdeEv Line | Count | Source | 332 | 1.06k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_9CodeModel5ModelEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25fine_grained_dependencies18SourceFileDepGraphEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKNS_8FunctionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_17TargetLibraryInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13FastMathFlagsEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13BasicAAResultEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_9AAResultsEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13LazyCallGraph12EdgeSequenceEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIxEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIdEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIyEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIDnEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_15MemoryBufferRefEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang12LookupResult13AmbiguityKindEEdeEv Unexecuted instantiation: swift_cache_tool_main.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_120SwiftCacheToolActionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_3cas9ObjectRefEEdeEv _ZNR4llvm8OptionalIN5swift11AccessLevelEEdeEv Line | Count | Source | 332 | 152k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift7version7VersionEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEdeEv Line | Count | Source | 332 | 242 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift18ModuleDependencyIDENS1_9allocatorIS4_EEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang7tooling12dependencies25DependencyScanningServiceEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift20ModuleDependencyInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift12dependencies14BatchScanInputENS1_9allocatorIS5_EEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16OptionalTypeKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12FunctionTypeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24LoweredFunctionSignatureEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18DeclAndTypePrinter14Implementation27FunctionSwiftABIInformationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15cxx_translation19RepresentationErrorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFN5swift21ClangValueTypePrinter11TypeUseKindES4_EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19ClangRepresentationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24LoweredFunctionSignature16DirectResultTypeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19CanGenericSignatureEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20IRABIDetailsProvider16SizeAndAlignmentEEdeEv _ZNR4llvm8OptionalINSt3__13setINS_9StringRefENS1_4lessIS3_EENS1_9allocatorIS3_EEEEEdeEv Line | Count | Source | 332 | 13 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift15FrontendOptions25ClangHeaderExposeBehaviorEEEEdeEv _ZNR4llvm8OptionalINSt3__16vectorIN5swift24SupplementaryOutputPathsENS1_9allocatorIS4_EEEEEdeEv Line | Count | Source | 332 | 22 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift24SupplementaryOutputPathsEEdeEv Line | Count | Source | 332 | 11 | T &operator*() & { return value(); } |
Unexecuted instantiation: CachingUtils.cpp:_ZNR4llvm8OptionalIZN5swift27replayCachedCompilerOutputsERNS_3cas11ObjectStoreERNS2_11ActionCacheENS2_9ObjectRefERNS1_16DiagnosticEngineERKNS1_24FrontendInputsAndOutputsERNS1_27CachingDiagnosticsProcessorEbE11OutputEntryEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalImEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift27UnavailableDeclOptimizationEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift27UnavailableDeclOptimizationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift17StrictConcurrencyEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift17StrictConcurrencyEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift28AccessNoteDiagnosticBehaviorEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift28AccessNoteDiagnosticBehaviorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16ConcurrencyModelEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IbEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21DestroyHoistingOptionEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21CopyPropagationOptionEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21DestroyHoistingOptionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift16JITDebugArtifactEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16JITDebugArtifactEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift16IRGenLLVMLTOKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFvvEEEEdeEv _ZNR4llvm8OptionalIN5swift26IntermoduleDepTrackingModeEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_6BLAKE3EEdeEv _ZNR4llvm8OptionalIN5swift13ModuleBuffersEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift14SourceFileKindEEdeEv Line | Count | Source | 332 | 11 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15AccessNotesFileEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16DiagnosticEngineEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13serialization6StatusEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_13TinyPtrVectorIPKN5swift13AvailableAttrEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift3ide3api7KeyKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift3ide3api15SDKNodeDeclTypeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift3ide3api11SDKNodeDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api7KeyKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api11SDKNodeKindEEdeEv _ZNR4llvm8OptionalIN5swift12AccessorKindEEdeEv Line | Count | Source | 332 | 563 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift8DeclKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8DeclKindEEdeEv _ZNR4llvm8OptionalIN5swift11SILAnalysis16InvalidationKindEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_13AtomicRMWInst5BinOpEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_5ValueEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen12StackAddressEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen7AddressEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIPNS_5ValueEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIN5swift7SILTypeEEEEdeEv _ZNR4llvm8OptionalIPNS_8FunctionEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift5irgen11ClassLayoutEEdeEv Line | Count | Source | 332 | 24 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift6Mangle10ASTMangler14SpecialContextEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen19ConstantInitBuilderEEdeEv _ZNR4llvm8OptionalIN5swift5irgen10LinkEntityEEdeEv Line | Count | Source | 332 | 22 | T &operator*() & { return value(); } |
Unexecuted instantiation: GenDiffFunc.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_127DifferentiableFuncFieldInfoEEdeEv Unexecuted instantiation: GenDiffFunc.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_119LinearFuncFieldInfoEEdeEv _ZNR4llvm8OptionalIN5swift18ClusteredBitVectorEEdeEv Line | Count | Source | 332 | 7 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift5irgen9AtomicityEEdeEv Line | Count | Source | 332 | 10 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen18AsyncContextLayoutEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_4TypeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen15FunctionPointerEEdeEv _ZNR4llvm8OptionalIN5clang7CodeGen28ConstantAggregateBuilderBase19PlaceholderPositionEEdeEv Line | Count | Source | 332 | 10 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TypeImportInfoINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEdeEv Unexecuted instantiation: GenMeta.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_129GenericSignatureHeaderBuilderEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen14FulfillmentMapEEdeEv _ZNR4llvm8OptionalINS_12function_refIFPNS_8ConstantERN5swift5irgen11IRGenModuleENS5_12ConstantInitEEEEEdeEv Line | Count | Source | 332 | 21 | T &operator*() & { return value(); } |
Unexecuted instantiation: GenStruct.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_114ClangFieldInfoEEdeEv GenStruct.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_115StructFieldInfoEEdeEv Line | Count | Source | 332 | 12 | T &operator*() & { return value(); } |
Unexecuted instantiation: GenTuple.cpp:_ZNR4llvm8OptionalIPKN12_GLOBAL__N_114TupleFieldInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen16YAMLTypeInfoNodeEEdeEv _ZNR4llvm8OptionalINS_3vfs10OutputFileEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang19ASTSourceDescriptorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEEdeEv _ZNR4llvm8OptionalINS_8TypeSizeEEdeEv Line | Count | Source | 332 | 3 | T &operator*() & { return value(); } |
Unexecuted instantiation: IRGenSIL.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_112LoweredValueEEdeEv _ZNR4llvm8OptionalIN5swift5irgen13OperationCostEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IhEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIhEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23OriginallyDefinedInAttr13ActiveVersionEEdeEv _ZNR4llvm8OptionalINS_10DataLayoutEEdeEv Line | Count | Source | 332 | 163 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_5MachO13PackedVersionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift5irgen4SizeEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift5irgen9AlignmentEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IjEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPNS_8ConstantEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen4SizeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen9AlignmentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen14YAMLModuleNodeEEdeEv _ZNR4llvm8OptionalIN5swift7RT_KindEEdeEv Line | Count | Source | 332 | 82 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift16DiverseStackBase15stable_iteratorEEdeEv Line | Count | Source | 332 | 435 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIPN5swift8Lowering14InitializationEEEEdeEv _ZNR4llvm8OptionalIN5swift10SILDeclRefEEdeEv Line | Count | Source | 332 | 787 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12ProtocolDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8FuncDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18AssociatedTypeDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift7VarDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19ProtocolConformanceEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEdeEv _ZNR4llvm8OptionalIN5swift8Lowering15FunctionSectionEEdeEv Line | Count | Source | 332 | 6 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering24ConvertingInitializationEEdeEv SILGenApply.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_18CallSiteEEdeEv Line | Count | Source | 332 | 143 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering14CalleeTypeInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__110unique_ptrIN5swift8Lowering10ResultPlanENS1_14default_deleteIS5_EEEEEdeEv SILGenApply.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_16CalleeEEdeEv Line | Count | Source | 332 | 104 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIPN5swift4ExprELj2EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering22ConversionPeepholeHintEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering10ConversionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering10Conversion6KindTyEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering12ManagedValueEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering6RValueEEdeEv _ZNR4llvm8OptionalIN5swift20SILAccessEnforcementEEdeEv Line | Count | Source | 332 | 21 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering6LValueEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering27InitializeDistActorIdentityEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering23TemporaryInitializationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering22FunctionInputGeneratorEEdeEv _ZNR4llvm8OptionalIN5swift14SILVTableEntryEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEdeEv Line | Count | Source | 332 | 50.2k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKjEdeEv _ZNR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_20TopDownRefCountStateEEEEdeEv Line | Count | Source | 332 | 495 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__14pairIN5swift8SILValueENS3_21BottomUpRefCountStateEEEEdeEv Line | Count | Source | 332 | 482 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_21BottomUpRefCountStateEEEEdeEv Line | Count | Source | 332 | 124 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS3_20TopDownRefCountStateEEEEdeEv Line | Count | Source | 332 | 140 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIPN5swift14SILInstructionEEEEdeEv _ZNR4llvm8OptionalIN5swift14ProjectionPathEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift13ArrayCallKindEEdeEv Line | Count | Source | 332 | 70 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift7SILTypeEEdeEv Line | Count | Source | 332 | 127 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPN5swift12ProtocolDeclENS_11SmallVectorIPNS2_15NominalTypeDeclELj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S8_EEEEEdeEv _ZNR4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEEdeEv Line | Count | Source | 332 | 13 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift14CanTypeWrapperINS1_15SILFunctionTypeEEEEdeEv Line | Count | Source | 332 | 6 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj8EEEEdeEv Line | Count | Source | 332 | 9 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEEdeEv Line | Count | Source | 332 | 2.78k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_16PartialApplyInstENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj16EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15DestroyAddrInstEEdeEv Unexecuted instantiation: DefiniteInitialization.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_16DIKindEEdeEv Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_114RecordedAccessEEdeEv Unexecuted instantiation: DiagnoseStaticExclusivity.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_117ConflictingAccessEEdeEv _ZNR4llvm8OptionalIN5swift14AutoDiffConfigEEdeEv Line | Count | Source | 332 | 3 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16SubElementOffsetEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_7SILNodeENS0_INS1_21TypeTreeLeafTypeRangeEEEEEEENS1_14FrozenMultiMapIS7_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_18RecyclingAllocatorINS_20BumpPtrAllocatorImplINS_15MallocAllocatorELm4096ELm4096ELm128EEEcLm192ELm64EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_INS5_IPNS1_7OperandENS1_28FieldSensitivePrunedLiveness15InterestingUserEEEEEEEEENS1_14FrozenMultiMapIS7_SC_NS_11SmallVectorISE_Lj8EEEE15PairToSecondEltEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_12SILSuccessor13pred_iteratorEEEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12SILSuccessor13pred_iteratorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS7_EEEEEEEEdeEv _ZNR4llvm8OptionalIN5swift17FullApplySiteKind7innertyEEdeEv Line | Count | Source | 332 | 101k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift13ApplySiteKind7innertyEEdeEv Line | Count | Source | 332 | 46.9k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8PassKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift5irgen28SignatureExpansionABIDetailsEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPN5swift9ClassDeclENS_11SmallVectorIS4_Lj8EEENS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_S6_EEEEEdeEv _ZNR4llvm8OptionalIPN5swift14SILInstructionEEdeEv Line | Count | Source | 332 | 65.4k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift16BuiltinValueKindEEdeEv Line | Count | Source | 332 | 8.08k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23ConcreteExistentialInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalI20ConcreteArgumentCopyEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEEdeEv RedundantOverflowCheckRemoval.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_133RedundantOverflowCheckRemovalPass13ValueRelationEEdeEv Line | Count | Source | 332 | 16 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__14pairIjPN5swift15EnumElementDeclEEEEdeEv Line | Count | Source | 332 | 121 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15EnumElementDeclEEdeEv _ZNR4llvm8OptionalINSt3__14pairIjNS_11SmallVectorINS2_IPN5swift13SILBasicBlockEPNS4_15EnumElementDeclEEELj2EEEEEEdeEv Line | Count | Source | 332 | 46 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEEdeEv Line | Count | Source | 332 | 557 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_8DenseMapIPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEEjNS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_jEEEEEdeEv Line | Count | Source | 332 | 13 | T &operator*() & { return value(); } |
SILMem2Reg.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_110LiveValuesEEdeEv Line | Count | Source | 332 | 24 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_11SmallVectorIPN5swift13SILBasicBlockELj16EEEEdeEv Line | Count | Source | 332 | 998 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIiEdeEv Line | Count | Source | 332 | 92.9k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift22LoadOwnershipQualifierEEdeEv Line | Count | Source | 332 | 2.10k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift13LoadOperationEEdeEv Line | Count | Source | 332 | 163 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalI17WellKnownFunctionEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13SymbolicValueEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN21LexicalDestroyFolding5MatchEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10ModuleDeclEEdeEv Unexecuted instantiation: APIDigesterData.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_115DiffItemKeyKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api15APIDiffItemKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift3ide3api11SDKNodeKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api14NodeAnnotationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3ide3api13SpecialCaseIdEEdeEv Unexecuted instantiation: Formatting.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_113IndentContextEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10AccessKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift6driver20IncrementalJobAction9InputInfo6StatusEEEEdeEv _ZNR4llvm8OptionalIN5clang13DarwinSDKInfoEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_6TripleEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift6driver20IncrementalJobAction9InputInfo6StatusEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift7options2IDEEdeEv _ZNR4llvm8OptionalINS0_IN5swift6driver6Driver10DriverKindEEEEdeEv Line | Count | Source | 332 | 5 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift6driver10OutputInfo7LTOKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift6driver10OutputInfo11MSVCRuntimeEEEEdeEv _ZNR4llvm8OptionalIN5swift7VarDecl10IntroducerEEdeEv Line | Count | Source | 332 | 359 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift19DefaultArgumentKindEEdeEv Line | Count | Source | 332 | 4.15k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16BuiltinMacroKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift29SILParameterDifferentiabilityEEdeEv _ZNR4llvm8OptionalIN5swift19ParameterConventionEEdeEv Line | Count | Source | 332 | 550 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift26SILResultDifferentiabilityEEdeEv _ZNR4llvm8OptionalIN5swift16ResultConventionEEdeEv Line | Count | Source | 332 | 220 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift15RequirementKindEEdeEv Line | Count | Source | 332 | 1.46k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalI20LayoutConstraintKindEdeEv Line | Count | Source | 332 | 14 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift12ReadImplKindEEdeEv Line | Count | Source | 332 | 374 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift13WriteImplKindEEdeEv Line | Count | Source | 332 | 374 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift17ReadWriteImplKindEEdeEv Line | Count | Source | 332 | 374 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23StableSerializationPath12ExternalPath13ComponentKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang14IdentifierInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang22OverloadedOperatorKindEEdeEv _ZNR4llvm8OptionalIN5swift14ImportedModuleEEdeEv Line | Count | Source | 332 | 34 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10ImportKindEEdeEv _ZNR4llvm8OptionalIN5swift11LibraryKindEEdeEv Line | Count | Source | 332 | 71 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20ModuleDependencyInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang11ConceptDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang14IdentifierInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang12TemplateNameEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang7TagDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang20TemplateTypeParmDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang13CXXRecordDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang13CXXRecordDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang11ConceptDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang4DeclEEdeEv _ZNR4llvm8OptionalIPKN5clang4DeclEEdeEv Line | Count | Source | 332 | 72 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang4ExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang4ExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang12FunctionDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang12FunctionDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang9NamedDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang9NamedDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang18NamespaceAliasDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang18NamespaceAliasDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang13NamespaceDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang13NamespaceDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang16ObjCProtocolDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang16ObjCProtocolDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang17ObjCTypeParamDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang17ObjCTypeParamDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang4StmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang4StmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang7TagDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang12TemplateDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang12TemplateDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang24TemplateTemplateParmDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang24TemplateTemplateParmDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang20TemplateTypeParmDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang15UsingShadowDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang15UsingShadowDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang9ValueDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang9ValueDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift24SerializedModuleBaseNameEEdeEv _ZNR4llvm8OptionalIN5swift10SILLinkageEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift7CanTypeEEdeEv Line | Count | Source | 332 | 125 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift15SubstitutionMapEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Lowering18AbstractionPatternEEdeEv _ZNR4llvm8OptionalIN5swift24DifferentiationThunkKindEEdeEv Line | Count | Source | 332 | 14 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift18SILDynamicCastKind7innertyEEdeEv Line | Count | Source | 332 | 41 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift18ValueOwnershipKindEEdeEv Line | Count | Source | 332 | 15 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23KeyPathPatternComponentEEdeEv Unexecuted instantiation: SILProfiler.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_111CounterExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16SILSymbolVisitor11DynamicKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift13OwnershipKind7innertyEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift14AnyFunctionRefEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13CapturedValueEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPN5swift13SILBasicBlockEjNS_12DenseMapInfoIS4_vEENS_6detail12DenseMapPairIS4_jEEEEEdeEv Unexecuted instantiation: FieldSensitivePrunedLiveness.cpp:_ZNR4llvm8OptionalINS0_IZNK5swift4test3$_4clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift17AccessStorageCastEEdeEv Unexecuted instantiation: PrunedLiveness.cpp:_ZNR4llvm8OptionalINS0_IZNK5swift4test3$_2clINS1_11SILFunctionENS2_9ArgumentsENS2_12FunctionTestEEEDaRT_RT0_RT1_E4KindEEEdeEv _ZNR4llvm8OptionalINS_8ArrayRefIPN5swift7OperandEEEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift14TransformRangeINS_8ArrayRefINSt3__14pairIPNS1_13SILBasicBlockENS0_IPNS1_7OperandEEEEEEENS1_14FrozenMultiMapIS7_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEdeEv Line | Count | Source | 332 | 161 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift21LinearLifetimeChecker5ErrorEEdeEv Line | Count | Source | 332 | 458 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFvPN5swift13SILBasicBlockEEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12function_refIFvPN5swift7OperandEEEEEdeEv _ZNR4llvm8OptionalIN5swift21LinearLifetimeChecker12ErrorBuilderEEdeEv Line | Count | Source | 332 | 60 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test12BoolArgumentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test12UIntArgumentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test8ArgumentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4test14StringArgumentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift12AccessorKindEEEEdeEv _ZNR4llvm8OptionalINS0_IN5swift18SILInstructionKindEEEEdeEv Line | Count | Source | 332 | 27 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift23OpenedExistentialAccessEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19AssignByWrapperInst4ModeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16AssignOrInitInst4ModeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13SILAccessKindEEdeEv _ZNR4llvm8OptionalINS0_IN5swift10SILLinkageEEEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift34MarkUnresolvedNonCopyableValueInst9CheckKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift34MarkUnresolvedReferenceBindingInst4KindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift22LoadOwnershipQualifierEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift19CastConsumptionKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift23StoreOwnershipQualifierEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift24AssignOwnershipQualifierEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9SILParser19UnresolvedValueNameEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8coverage7CounterEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_12PointerUnionIJPN5swift4StmtEPNS2_4DeclEEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18InFlightDiagnosticEEdeEv _ZNR4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEdeEv Line | Count | Source | 332 | 234 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints16SelectedOverloadEEdeEv Line | Count | Source | 332 | 44 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift13CaseLabelItemEEdeEv _ZNR4llvm8OptionalINS_11SmallPtrSetIPN5swift11constraints10ConstraintELj4EEEEdeEv Line | Count | Source | 332 | 17 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8ExprKindEEdeEv Unexecuted instantiation: CSSyntacticElement.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_123SyntacticElementContextEEdeEv Unexecuted instantiation: CSGen.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_119ConstraintGenerator13TypeOperationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEEdeEv Unexecuted instantiation: CSRanking.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_121TypeBindingsToCompareEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8TypeBaseEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints17CompletionArgInfoEEdeEv _ZNR4llvm8OptionalIN5swift11constraints23MatchCallArgumentResultEEdeEv Line | Count | Source | 332 | 576 | T &operator*() & { return value(); } |
Unexecuted instantiation: CSSimplify.cpp:_ZNR4llvm8OptionalINSt3__15tupleIJPN5swift20GenericTypeParamTypeEPNS3_16TypeVariableTypeENS3_4TypeENS3_9OptionSetIN12_GLOBAL__N_132OpenedExistentialAdjustmentFlagsEjEEEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints25SingleValueStmtBranchKindEEdeEv _ZNR4llvm8OptionalIN5swift11constraints18MemberLookupResult14UnviableReasonEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIN5swift10IdentifierEEEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints9ScoreKindEEdeEv Line | Count | Source | 332 | 1.44k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints14ConstraintKindEEdeEv Line | Count | Source | 332 | 2.12k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints19TypeVariableBindingEEdeEv Line | Count | Source | 332 | 336 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints17DisjunctionChoiceEEdeEv Line | Count | Source | 332 | 2.19k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints18ConjunctionElementEEdeEv CSStep.cpp:_ZNR4llvm8OptionalIZN5swift11constraints13ComponentStep4takeEbE8StepKindEdeEv Line | Count | Source | 332 | 106 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints9inference10BindingSetEEdeEv Line | Count | Source | 332 | 98 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift11constraints25ConversionRestrictionKindEEdeEv Line | Count | Source | 332 | 205 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints11FixBehaviorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__15tupleIJN5swift21ContextualTypePurposeENS3_4TypeES5_EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJNS1_4TypeEEEEEdeEv Unexecuted instantiation: CSDiagnostics.cpp:_ZNR4llvm8OptionalIZNK5swift11constraints29NonEphemeralConversionFailure19emitSuggestionNotesEvE15AlternativeKindEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEEdeEv _ZNR4llvm8OptionalIN5swift11constraints9inference17PotentialBindingsEEdeEv Line | Count | Source | 332 | 9.04k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift7VarDeclENS3_4TypeEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints7FixKindEEdeEv _ZNR4llvm8OptionalIN5swift11constraints5ScoreEEdeEv Line | Count | Source | 332 | 259 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift12LookupResultEEdeEv Line | Count | Source | 332 | 110 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints17ConstraintLocator11PathElement16KeyPathComponentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11constraints14OverloadChoiceEEdeEv _ZNR4llvm8OptionalIN5swift11constraints9inference16PotentialBindingEEdeEv Line | Count | Source | 332 | 658 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11DeclNameRefEEdeEv _ZNR4llvm8OptionalIN5swift21ContextualTypePurposeEEdeEv Line | Count | Source | 332 | 112 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift26MagicIdentifierLiteralExpr4KindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8ArgumentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19ExportabilityReasonEEdeEv _ZNR4llvm8OptionalIN5swift11AccessScopeEEdeEv Line | Count | Source | 332 | 361 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalI35AbstractFunctionDeclLookupErrorKindEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18DiagnosticBehaviorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIbbEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12VarRefUseEnvEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22DispatchQueueOperationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16AttributedImportINS1_14ImportedModuleEEEEdeEv TypeCheckConcurrency.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_126MemberIsolationPropagationEEdeEv Line | Count | Source | 332 | 579 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift22DispatchQueueOperationEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15ReferencedActorEEdeEv _ZNR4llvm8OptionalINSt3__16vectorIN5swift11constraints8SolutionENS1_9allocatorIS5_EEEEEdeEv Line | Count | Source | 332 | 113 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22AutomaticEnumValueKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJjNS1_8DeclNameENS1_12ObjCSelectorEEEEEdeEv _ZNR4llvm8OptionalIN5swift18StaticSpellingKindEEdeEv Line | Count | Source | 332 | 15 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift10ObjCReasonEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
Unexecuted instantiation: TypeCheckEffects.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_17ContextEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10EffectKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift11SourceRangeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift23ExternalMacroDefinitionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15CheckedCastKindEEdeEv _ZNR4llvm8OptionalIN5swift18ConformanceCheckerEEdeEv Line | Count | Source | 332 | 22 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift14ActorIsolationEEdeEv Line | Count | Source | 332 | 117 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8DeclNameEEdeEv Unexecuted instantiation: TypeCheckProtocol.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_134PotentialWitnessWarningSuppressionEEdeEv _ZNR4llvm8OptionalIN5swift11constraints8SolutionEEdeEv Line | Count | Source | 332 | 426 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift16RequirementMatchEEdeEv Line | Count | Source | 332 | 426 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift10CustomAttrEPNS3_15NominalTypeDeclEEEEdeEv _ZNR4llvm8OptionalIN5swift11RequirementEEdeEv Line | Count | Source | 332 | 2.10k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__16vectorINS1_4pairIPN5swift18AssociatedTypeDeclENS4_4TypeEEENS1_9allocatorIS8_EEEEEdeEv Line | Count | Source | 332 | 174 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25RegexCaptureStructureCodeEEdeEv TypeCheckSwitchStmt.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEdeEv Line | Count | Source | 332 | 121 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS0_IN5swift29SILFunctionTypeRepresentationEEEEdeEv Line | Count | Source | 332 | 23 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEEdeEv Line | Count | Source | 332 | 557 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift26FunctionTypeRepresentationEEEEdeEv _ZNR4llvm8OptionalIN5swift26FunctionTypeRepresentationEEdeEv Line | Count | Source | 332 | 54 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16FunctionTypeReprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift13SanitizerKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_24SanitizerCoverageOptions4TypeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10IdentifierEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallStringILj128EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang12FileEntryRefEEdeEv _ZNR4llvm8OptionalIN5clang17DirectoryEntryRefEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift30ObjCInterfaceAndImplementationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5clang6ModuleEEdeEv _ZNR4llvm8OptionalIPN5swift4DeclEEdeEv Line | Count | Source | 332 | 17 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12DeclBaseNameEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignErrorConventionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8importer12ImportedNameEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignAsyncConventionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19CtorInitializerKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift12PlatformKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignErrorConvention4KindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5clang8EnumDeclEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang8QualTypeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignErrorConvention4InfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEEdeEv _ZNR4llvm8OptionalINSt3__14pairIN5swift16SwiftLookupTable11ContextKindENS_9StringRefEEEEdeEv Line | Count | Source | 332 | 37 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21EffectiveClangContextEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift3tokEEdeEv Unexecuted instantiation: ParseDecl.cpp:_ZNR4llvm8OptionalIZN5swift6Parser33parseStorageRestrictionsAttributeENS1_9SourceLocES3_E10AccessKindEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift4DiagIJNS_9StringRefES3_EEEEdeEv Unexecuted instantiation: ParseDecl.cpp:_ZNR4llvm8OptionalIZN5swift6Parser33parseExtendedAvailabilitySpecListENS1_9SourceLocES3_NS_9StringRefEE3$_4EdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12PlatformKindEEdeEv _ZNR4llvm8OptionalIN5swift21DifferentiabilityKindEEdeEv Line | Count | Source | 332 | 407 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift11AccessLevelEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift9MacroRoleEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift27MacroIntroducedDeclNameKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift27MacroIntroducedDeclNameKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10InlineKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16OptimizationModeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15ExclusivityAttr4ModeEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18ReferenceOwnershipEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15NonSendableKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift13AssociativityEEEEdeEv _ZNR4llvm8OptionalIN5swift13AssociativityEEdeEv Line | Count | Source | 332 | 84 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21PlatformConditionKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift21PlatformConditionKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15TuplePatternEltEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift5TokenENS1_9allocatorIS4_EEEEEdeEv _ZNR4llvm8OptionalINS_8ArrayRefIN5swift7ASTNodeEEEEdeEv Line | Count | Source | 332 | 114 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift12StableHasherEEdeEv Line | Count | Source | 332 | 135 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift21KnownFoundationEntityEEEEdeEv _ZNR4llvm8OptionalIN5swift22MetatypeRepresentationEEdeEv Line | Count | Source | 332 | 802 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift13SILResultInfoEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift4UUIDEEdeEv Line | Count | Source | 332 | 12 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25ForeignRepresentationInfoEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift38PropertyWrapperSynthesizedPropertyKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang7tooling12dependencies39DependencyScanningFilesystemSharedCacheEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang23HeaderIncludeFormatKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIbN5clang26HeaderIncludeFilteringKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15TypeLookupErrorEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle30ImplParameterDifferentiabilityEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle23ImplParameterConventionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle27ImplResultDifferentiabilityEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle20ImplResultConventionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle26ImplMetatypeRepresentationEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift8Demangle10ASTBuilder17ForeignModuleKindEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_I20LayoutConstraintKindEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift13ClangTypeKindEEdeEv _ZNR4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEdeEv Line | Count | Source | 332 | 27 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIcEdeEv Line | Count | Source | 332 | 212 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8DenseMapIPKN5clang6ModuleEPN5swift10ModuleDeclENS_12DenseMapInfoIS5_vEENS_6detail12DenseMapPairIS5_S8_EEEEEdeEv ASTPrinter.cpp:_ZNR4llvm8OptionalIN12_GLOBAL__N_111TypePrinterEEdeEv Line | Count | Source | 332 | 58 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9MacroRoleEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9SourceLocEEdeEv _ZNR4llvm8OptionalIN5swift15CharSourceRangeEEdeEv Line | Count | Source | 332 | 32.9k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ErrorExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14NilLiteralExprEEdeEv _ZNR4llvm8OptionalIPN5swift18BooleanLiteralExprEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift18IntegerLiteralExprEEdeEv Line | Count | Source | 332 | 53 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16FloatLiteralExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17StringLiteralExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift26MagicIdentifierLiteralExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift29InterpolatedStringLiteralExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16RegexLiteralExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17ObjectLiteralExprEEdeEv _ZNR4llvm8OptionalIPN5swift21DiscardAssignmentExprEEdeEv Line | Count | Source | 332 | 6 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift11DeclRefExprEEdeEv Line | Count | Source | 332 | 266 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12SuperRefExprEEdeEv _ZNR4llvm8OptionalIPN5swift8TypeExprEEdeEv Line | Count | Source | 332 | 58 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift27OtherConstructorDeclRefExprEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift24DotSyntaxBaseIgnoredExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21OverloadedDeclRefExprEEdeEv _ZNR4llvm8OptionalIPN5swift21UnresolvedDeclRefExprEEdeEv Line | Count | Source | 332 | 188 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift13MemberRefExprEEdeEv Line | Count | Source | 332 | 109 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift13SubscriptExprEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20DynamicMemberRefExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20DynamicSubscriptExprEEdeEv _ZNR4llvm8OptionalIPN5swift24UnresolvedSpecializeExprEEdeEv Line | Count | Source | 332 | 8 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20UnresolvedMemberExprEEdeEv _ZNR4llvm8OptionalIPN5swift17UnresolvedDotExprEEdeEv Line | Count | Source | 332 | 13 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift12SequenceExprEEdeEv Line | Count | Source | 332 | 38 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift9ParenExprEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11DotSelfExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9AwaitExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10BorrowExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift31UnresolvedMemberChainResultExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8CopyExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ConsumeExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift7TryExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12ForceTryExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15OptionalTryExprEEdeEv _ZNR4llvm8OptionalIPN5swift9TupleExprEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ArrayExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14DictionaryExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22KeyPathApplicationExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16TupleElementExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15CaptureListExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ClosureExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15AutoClosureExprEEdeEv _ZNR4llvm8OptionalIPN5swift9InOutExprEEdeEv Line | Count | Source | 332 | 48 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19VarargExpansionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17PackExpansionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PackElementExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19MaterializePackExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15DynamicTypeExprEEdeEv _ZNR4llvm8OptionalIPN5swift27RebindSelfInConstructorExprEEdeEv Line | Count | Source | 332 | 1 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15OpaqueValueExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift35PropertyWrapperValuePlaceholderExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift26AppliedPropertyWrapperExprEEdeEv _ZNR4llvm8OptionalIPN5swift19DefaultArgumentExprEEdeEv Line | Count | Source | 332 | 21 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16BindOptionalExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22OptionalEvaluationExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14ForceValueExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19OpenExistentialExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift28MakeTemporarilyEscapableExprEEdeEv _ZNR4llvm8OptionalIPN5swift8CallExprEEdeEv Line | Count | Source | 332 | 96 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PrefixUnaryExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16PostfixUnaryExprEEdeEv _ZNR4llvm8OptionalIPN5swift10BinaryExprEEdeEv Line | Count | Source | 332 | 17 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift17DotSyntaxCallExprEEdeEv Line | Count | Source | 332 | 33 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift22ConstructorRefCallExprEEdeEv Line | Count | Source | 332 | 23 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift8LoadExprEEdeEv Line | Count | Source | 332 | 3 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21ABISafeConversionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20DestructureTupleExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift28UnresolvedTypeConversionExprEEdeEv _ZNR4llvm8OptionalIPN5swift22FunctionConversionExprEEdeEv Line | Count | Source | 332 | 3 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift31CovariantFunctionConversionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift29CovariantReturnConversionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22MetatypeConversionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift30CollectionUpcastConversionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ErasureExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22AnyHashableErasureExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16BridgeToObjCExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18BridgeFromObjCExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift29ConditionalBridgeFromObjCExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift17DerivedToBaseExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20ArchetypeToSuperExprEEdeEv _ZNR4llvm8OptionalIPN5swift22InjectIntoOptionalExprEEdeEv Line | Count | Source | 332 | 5 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift25ClassMetatypeToObjectExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift31ExistentialMetatypeToObjectExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift28ProtocolMetatypeToObjectExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18InOutToPointerExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18ArrayToPointerExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19StringToPointerExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift20PointerToPointerExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift27ForeignObjectConversionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift23UnevaluatedInstanceExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift22UnderlyingToOpaqueExprEEdeEv _ZNR4llvm8OptionalIPN5swift26DifferentiableFunctionExprEEdeEv Line | Count | Source | 332 | 3 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18LinearFunctionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift41DifferentiableFunctionExtractOriginalExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift33LinearFunctionExtractOriginalExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift34LinearToDifferentiableFunctionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21ForcedCheckedCastExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift26ConditionalCheckedCastExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6IsExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10CoerceExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ArrowExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11TernaryExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14EnumIsCaseExprEEdeEv _ZNR4llvm8OptionalIPN5swift10AssignExprEEdeEv Line | Count | Source | 332 | 40 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18CodeCompletionExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21UnresolvedPatternExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19LazyInitializerExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift21EditorPlaceholderExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift16ObjCSelectorExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11KeyPathExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19SingleValueStmtExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift14KeyPathDotExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift10OneWayExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift7TapExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12TypeJoinExprEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift18MacroExpansionExprEEdeEv _ZNR4llvm8OptionalIPN5swift10ReturnStmtEEdeEv Line | Count | Source | 332 | 137 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8ThenStmtEEdeEv _ZNR4llvm8OptionalIPN5swift9YieldStmtEEdeEv Line | Count | Source | 332 | 25 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9DeferStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6IfStmtEEdeEv _ZNR4llvm8OptionalIPN5swift9GuardStmtEEdeEv Line | Count | Source | 332 | 2 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9WhileStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift6DoStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11DoCatchStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15RepeatWhileStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ForEachStmtEEdeEv _ZNR4llvm8OptionalIPN5swift10SwitchStmtEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift8CaseStmtEEdeEv Line | Count | Source | 332 | 12 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9BreakStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12ContinueStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15FallthroughStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift8FailStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9ThrowStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11DiscardStmtEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift15PoundAssertStmtEEdeEv _ZNR4llvm8OptionalIPN5swift12ParenPatternEEdeEv Line | Count | Source | 332 | 10 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift12TuplePatternEEdeEv Line | Count | Source | 332 | 8 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift10AnyPatternEEdeEv Line | Count | Source | 332 | 4 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift12TypedPatternEEdeEv Line | Count | Source | 332 | 855 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift14BindingPatternEEdeEv Line | Count | Source | 332 | 8 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift9IsPatternEEdeEv _ZNR4llvm8OptionalIPN5swift18EnumElementPatternEEdeEv Line | Count | Source | 332 | 19 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift19OptionalSomePatternEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11BoolPatternEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11ExprPatternEEdeEv _ZNR4llvm8OptionalIPN5swift4StmtEEdeEv Line | Count | Source | 332 | 9.30k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift7PatternEEdeEv Line | Count | Source | 332 | 11.2k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift12ArgumentListEEdeEv Line | Count | Source | 332 | 9.37k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift12TypeAttrKindEEdeEv Line | Count | Source | 332 | 126 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift12DeclAttrKindEEdeEv Line | Count | Source | 332 | 105 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift4TypeEEdeEv Line | Count | Source | 332 | 347k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift16GenericSignatureEEdeEv Line | Count | Source | 332 | 88.5k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift11IndexSubsetEEdeEv Line | Count | Source | 332 | 330 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS0_IN5swift30AutoDiffDerivativeFunctionKind7innertyEEEEdeEv Line | Count | Source | 332 | 12 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKind7innertyEEdeEv Line | Count | Source | 332 | 12 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift41NormalDifferentiableFunctionTypeComponent7innertyEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift41LinearDifferentiableFunctionTypeComponent7innertyEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift36DifferentiabilityWitnessFunctionKind7innertyEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift36DifferentiabilityWitnessFunctionKind7innertyEEdeEv _ZNR4llvm8OptionalINS_12VersionTupleEEdeEv Line | Count | Source | 332 | 61 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_14AtomicOrderingEEdeEv ClangTypeConverter.cpp:_ZNR4llvm8OptionalIZN5swift18ClangTypeConverter21visitBoundGenericTypeEPNS1_16BoundGenericTypeEE10StructKindEdeEv Line | Count | Source | 332 | 8 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift19AvailabilityContextEEdeEv Line | Count | Source | 332 | 110 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift16GenericParamListEEdeEv Line | Count | Source | 332 | 53.8k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift15NominalTypeDeclEEdeEv Line | Count | Source | 332 | 24 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEEdeEv Line | Count | Source | 332 | 14 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPKN5swift19PatternBindingEntryEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift12AccessorDeclEEdeEv _ZNR4llvm8OptionalIN5swift19OpaqueReadOwnershipEEdeEv Line | Count | Source | 332 | 766 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_13TinyPtrVectorIPN5swift9ValueDeclEEEEdeEv Line | Count | Source | 332 | 36.6k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift14DestructorDeclEEdeEv Line | Count | Source | 332 | 490 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIPN5swift12ProtocolDeclEEEEdeEv Line | Count | Source | 332 | 7.16k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINS_8ArrayRefIPN5swift9ValueDeclEEEEdeEv Line | Count | Source | 332 | 202 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift20RequirementSignatureEEdeEv Line | Count | Source | 332 | 10.1k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift15StorageImplInfoEEdeEv Line | Count | Source | 332 | 5.09k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift12ObjCSelectorEEdeEv _ZNR4llvm8OptionalIPN5swift12NamedPatternEEdeEv Line | Count | Source | 332 | 945 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift14ParamSpecifierEEdeEv Line | Count | Source | 332 | 17.5k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIPN5swift11InitializerEEdeEv _ZNR4llvm8OptionalIPN5swift4ExprEEdeEv Line | Count | Source | 332 | 64.7k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift18BodyAndFingerprintEEdeEv Line | Count | Source | 332 | 63.7k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift9BraceStmtEEdeEv Line | Count | Source | 332 | 555 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift14SelfAccessKindEEdeEv Line | Count | Source | 332 | 18.8k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalINSt3__15tupleIJEEEEdeEv Line | Count | Source | 332 | 18 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift19GeneratedSourceInfoEEdeEv _ZNR4llvm8OptionalIN5swift14DiagnosticInfoEEdeEv Line | Count | Source | 332 | 88 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift10RawCommentEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25fine_grained_dependencies8NodeKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25fine_grained_dependencies10DeclAspectEEdeEv _ZNR4llvm8OptionalIN5swift23SourceFileParsingResultEEdeEv Line | Count | Source | 332 | 228 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__14pairIPN5swift10ModuleDeclENS3_10IdentifierEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5clang10CASOptionsEEdeEv _ZNR4llvm8OptionalIPN5swift9ClassDeclEEdeEv Line | Count | Source | 332 | 25.5k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_11SmallVectorIN5swift7CanTypeELj4EEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift22ExprPatternMatchResultEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift18TypeWitnessAndDeclEEdeEv _ZNR4llvm8OptionalIN5swift7WitnessEEdeEv Line | Count | Source | 332 | 216 | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIPN5swift9rewriting11PropertyBagEEdeEv Line | Count | Source | 332 | 27.9k | T &operator*() & { return value(); } |
_ZNR4llvm8OptionalIN5swift9rewriting6SymbolEEdeEv Line | Count | Source | 332 | 16.7k | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift9rewriting10DebugFlagsEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift9rewriting10DebugFlagsEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefIN5swift9rewriting4TermEEEEdeEv _ZNR4llvm8OptionalIN5swift22ProtocolConformanceRefEEdeEv Line | Count | Source | 332 | 442 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift25PrecedenceGroupDescriptor13PathDirectionEEdeEv _ZNR4llvm8OptionalIN5swift10file_types2IDEEdeEv Line | Count | Source | 332 | 104 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS0_IN5swift7FeatureEEEEdeEv _ZNR4llvm8OptionalINS0_INS_9StringRefEEEEdeEv Line | Count | Source | 332 | 980 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalINS_8ArrayRefINS_9StringRefEEEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20UnifiedStatsReporter22AlwaysOnDriverCountersEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift20UnifiedStatsReporter24AlwaysOnFrontendCountersEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalINSt3__16vectorIN5swift20UnifiedStatsReporter18FrontendStatsEventENS1_9allocatorIS5_EEEEEdeEv _ZNR4llvm8OptionalINSt3__16vectorIiNS1_9allocatorIiEEEEEdeEv Line | Count | Source | 332 | 6 | T &operator*() & { return value(); } |
Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift16BlockListKeyKindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift15BlockListActionEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle4Node4KindEEdeEv Unexecuted instantiation: _ZNR4llvm8OptionalIN5swift8Demangle10DirectnessEEdeEv |
333 | | |
334 | 9.51k | template <typename U> constexpr T value_or(U &&alt) const & { |
335 | 9.51k | return has_value() ? value() : std::forward<U>(alt); |
336 | 9.51k | } _ZNKR4llvm8OptionalINS_5AlignEE8value_orIS1_EES1_OT_ Line | Count | Source | 334 | 230 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 230 | return has_value() ? value() : std::forward<U>(alt); | 336 | 230 | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINS_12DIExpression12FragmentInfoEE8value_orIRKS2_EES2_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE8value_orIS7_EES7_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIjE8value_orIiEEjOT_ _ZNKR4llvm8OptionalIjE8value_orIRjEEjOT_ Line | Count | Source | 334 | 170 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 170 | return has_value() ? value() : std::forward<U>(alt); | 336 | 170 | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE8value_orIRA7_KcEES7_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift7SILTypeEE8value_orIS2_EES2_OT_ _ZNKR4llvm8OptionalIbE8value_orIbEEbOT_ Line | Count | Source | 334 | 13 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 13 | return has_value() ? value() : std::forward<U>(alt); | 336 | 13 | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5clang14SourceLocationEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalINS_9StringRefEE8value_orIRS1_EES1_OT_ _ZNKR4llvm8OptionalIN5swift5irgen9AlignmentEE8value_orIS3_EES3_OT_ Line | Count | Source | 334 | 3 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 3 | return has_value() ? value() : std::forward<U>(alt); | 336 | 3 | } |
_ZNKR4llvm8OptionalIN5swift29SILFunctionTypeRepresentationEE8value_orIS2_EES2_OT_ Line | Count | Source | 334 | 68 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 68 | return has_value() ? value() : std::forward<U>(alt); | 336 | 68 | } |
_ZNKR4llvm8OptionalIN5swift8SILValueEE8value_orIS2_EES2_OT_ Line | Count | Source | 334 | 4.62k | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 4.62k | return has_value() ? value() : std::forward<U>(alt); | 336 | 4.62k | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11AccessLevelEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang11ConceptDeclEE8value_orIDnEES3_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang7TagDeclEE8value_orIDnEES3_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIPN5clang20TemplateTypeParmDeclEE8value_orIDnEES3_OT_ _ZNKR4llvm8OptionalIN5swift9SourceLocEE8value_orIS2_EES2_OT_ Line | Count | Source | 334 | 150 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 150 | return has_value() ? value() : std::forward<U>(alt); | 336 | 150 | } |
_ZNKR4llvm8OptionalIN5swift11SILLocationEE8value_orIS2_EES2_OT_ Line | Count | Source | 334 | 1 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 1 | return has_value() ? value() : std::forward<U>(alt); | 336 | 1 | } |
_ZNKR4llvm8OptionalIjE8value_orIjEEjOT_ Line | Count | Source | 334 | 59 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 59 | return has_value() ? value() : std::forward<U>(alt); | 336 | 59 | } |
_ZNKR4llvm8OptionalIN5swift13AccessStorageEE8value_orIS2_EES2_OT_ Line | Count | Source | 334 | 2.93k | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 2.93k | return has_value() ? value() : std::forward<U>(alt); | 336 | 2.93k | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11TaggedUnionIJPNS1_11SILFunctionEPNS1_13SILBasicBlockEEEEE8value_orIS4_EES7_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift11constraints18ContextualTypeInfoEE8value_orIS3_EES3_OT_ _ZNKR4llvm8OptionalIN5swift11constraints23TrailingClosureMatchingEE8value_orIS3_EES3_OT_ Line | Count | Source | 334 | 1.24k | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 1.24k | return has_value() ? value() : std::forward<U>(alt); | 336 | 1.24k | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift4TypeEE8value_orIRS2_EES2_OT_ _ZNKR4llvm8OptionalIN5swift12AccessorKindEE8value_orIS2_EES2_OT_ Line | Count | Source | 334 | 3 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 3 | return has_value() ? value() : std::forward<U>(alt); | 336 | 3 | } |
Unexecuted instantiation: TypeCheckAvailability.cpp:_ZNKR4llvm8OptionalIN12_GLOBAL__N_119ReplacementDeclKindEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalINS_12VersionTupleEE8value_orIRS1_EES1_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift12VarRefUseEnvEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalIN5swift19CtorInitializerKindEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalINS_9StringRefEE8value_orIRA1_KcEES1_OT_ Unexecuted instantiation: _ZNKR4llvm8OptionalINS_12VersionTupleEE8value_orIS1_EES1_OT_ _ZNKR4llvm8OptionalINS_15MutableArrayRefIPN5swift7VarDeclEEEE8value_orIS5_EES5_OT_ Line | Count | Source | 334 | 15 | template <typename U> constexpr T value_or(U &&alt) const & { | 335 | 15 | return has_value() ? value() : std::forward<U>(alt); | 336 | 15 | } |
|
337 | | template <typename U> |
338 | | LLVM_DEPRECATED("Use value_or instead.", "value_or") |
339 | | constexpr T getValueOr(U &&alt) const & { |
340 | | return has_value() ? value() : std::forward<U>(alt); |
341 | | } |
342 | | |
343 | | /// Apply a function to the value if present; otherwise return None. |
344 | | template <class Function> |
345 | 12 | auto transform(const Function &F) const & -> Optional<decltype(F(value()))> { |
346 | 12 | if (*this) |
347 | 4 | return F(value()); |
348 | 8 | return None; |
349 | 12 | } _ZNKR4llvm8OptionalINSt3__14pairIN5swift16SILDebugLocationENS3_16SILDebugVariableEEEE9transformIZNS3_8autodiff14PullbackCloner14Implementation16getAdjointBufferEPNS3_13SILBasicBlockENS3_8SILValueEEUlS6_E_EENS0_IDTclfp_cldtdefpT5valueEEEEERKT_ Line | Count | Source | 345 | 12 | auto transform(const Function &F) const & -> Optional<decltype(F(value()))> { | 346 | 12 | if (*this) | 347 | 4 | return F(value()); | 348 | 8 | return None; | 349 | 12 | } |
Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__15tupleIJjjEEEE9transformIZN5swift13MultiMapCacheINS6_8SILValueEPNS6_7OperandENS_13SmallDenseMapIS8_S4_Lj8ENS_12DenseMapInfoIS8_vEENS_6detail12DenseMapPairIS8_S4_EEEENS_11SmallVectorISA_Lj32EEENS_15SmallVectorImplISA_EEE3getERKS8_EUlS3_E_EENS0_IDTclfp_cldtdefpT5valueEEEEERKT_ Unexecuted instantiation: Deserialization.cpp:_ZNKR4llvm8OptionalIjE9transformIZN5clang13serialization15BasicReaderBaseIN12_GLOBAL__N_123SwiftToClangBasicReaderEE20readTemplateArgumentEvEUljE_EENS0_IDTclfp_cldtdefpT5valueEEEEERKT_ Unexecuted instantiation: _ZNKR4llvm8OptionalINSt3__15tupleIJjjEEEE9transformIZN5swift13MultiMapCacheINS6_10AccessPathEPNS6_7OperandENS_13SmallDenseMapIS8_S4_Lj8ENS_12DenseMapInfoIS8_vEENS_6detail12DenseMapPairIS8_S4_EEEENS_11SmallVectorISA_Lj32EEENS_15SmallVectorImplISA_EEE3getERKS8_EUlS3_E_EENS0_IDTclfp_cldtdefpT5valueEEEEERKT_ |
350 | | template <class Function> |
351 | | LLVM_DEPRECATED("Use transform instead.", "transform") |
352 | | auto map(const Function &F) const & -> Optional<decltype(F(value()))> { |
353 | | if (*this) |
354 | | return F(value()); |
355 | | return None; |
356 | | } |
357 | | |
358 | 13.9k | T &&value() && { return std::move(Storage.value()); }Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift20ModuleDependencyInfoEE5valueEv _ZNO4llvm8OptionalIN5swift24FrontendInputsAndOutputsEE5valueEv Line | Count | Source | 358 | 11 | T &&value() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__16vectorIN5swift17FunctionParameterENS1_9allocatorIS4_EEEEE5valueEv _ZNO4llvm8OptionalINS_5APIntEE5valueEv Line | Count | Source | 358 | 6 | T &&value() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift5irgen4SizeEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIN5swift8Lowering12ManagedValueES5_EEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEE5valueEv _ZNO4llvm8OptionalIPN5swift21EpilogueARCBlockStateEE5valueEv Line | Count | Source | 358 | 4.82k | T &&value() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift16SILDebugVariableEE5valueEv Line | Count | Source | 358 | 17 | T &&value() && { return std::move(Storage.value()); } |
DefiniteInitialization.cpp:_ZNO4llvm8OptionalIN12_GLOBAL__N_16DIKindEE5valueEv Line | Count | Source | 358 | 17 | T &&value() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift13SymbolicValueEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIjE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalINS_11SmallPtrSetIPN5swift14SILInstructionELj8EEEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalINS_14ilist_iteratorINS_12ilist_detail20compute_node_optionsIN5swift14SILInstructionEJEE4typeELb0ELb0EEEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift6markup12CommentPartsEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeEE5valueEv _ZNO4llvm8OptionalINS_18PointerEmbeddedIntIjLi31EEEE5valueEv Line | Count | Source | 358 | 9.07k | T &&value() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift26FunctionTypeRepresentationEE5valueEv Line | Count | Source | 358 | 4 | T &&value() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalINS_9StringRefEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5clang6ModuleEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift7version7VersionEE5valueEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift21PlatformConditionKindEE5valueEv _ZNO4llvm8OptionalINSt3__14pairIN5swift11AccessLevelES4_EEE5valueEv Line | Count | Source | 358 | 12 | T &&value() && { return std::move(Storage.value()); } |
|
359 | | LLVM_DEPRECATED("Use value instead.", "value") T &&getValue() && { |
360 | | return std::move(Storage.value()); |
361 | | } |
362 | 202k | T &&operator*() && { return std::move(Storage.value()); }Unexecuted instantiation: _ZNO4llvm8OptionalINS_12DIExpression12FragmentInfoEEdeEv _ZNO4llvm8OptionalIPKN5swift13SemanticsAttrEEdeEv Line | Count | Source | 362 | 10 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIPN5swift15EnumElementDeclEEdeEv Line | Count | Source | 362 | 461 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIjEdeEv Line | Count | Source | 362 | 115k | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalINS_8ArrayRefIN5swift11RequirementEEEEdeEv Line | Count | Source | 362 | 67 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift15SILArgumentKindEEdeEv Line | Count | Source | 362 | 27.1k | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalINS_14MemoryLocationEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINS_3cas9ObjectRefEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift12EnumCaseDeclEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift13AvailableAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift27RestatedObjCConformanceAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift30AutoDiffDerivativeFunctionKindEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift5irgen22CompletedDebugTypeInfoEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift5irgen4SizeEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift5irgen9AlignmentEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift5irgen13FixedTypeInfoEEdeEv _ZNO4llvm8OptionalIPKN5swift18DifferentiableAttrEEdeEv Line | Count | Source | 362 | 132 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIPKN5swift14DerivativeAttrEEdeEv Line | Count | Source | 362 | 28 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift15KeyPathTypeKindEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift28ARCSequenceDataflowEvaluator20ARCBBStateInfoHandleEEdeEv _ZNO4llvm8OptionalIN5swift10LoopRegion11SuccessorIDEEdeEv Line | Count | Source | 362 | 5.25k | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIPN5swift13EndAccessInstEEdeEv Line | Count | Source | 362 | 10 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift18ValueOwnershipKindEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift18MarkDependenceInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift15FixLifetimeInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift12TryApplyInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_7SILTypeEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_INS3_8SILValueEEEEEEENS3_14FrozenMultiMapIS5_S8_NS_11SmallVectorISA_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift21TypeTreeLeafTypeRangeEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift16SubElementOffsetEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift13SILBasicBlockEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIN5swift12siloptimizer18TypeOffsetSizePairENS3_8SILValueEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIPN5swift14SILInstructionENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_INS3_20DebugVarCarryingInstEEEEEEENS3_14FrozenMultiMapIjS6_NS1_6vectorIS8_NS1_9allocatorIS8_EEEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIjNS0_IN5swift14TransformRangeINS_8ArrayRefINS2_IjNS0_IPNS3_22SingleValueInstructionEEEEEEENS3_14FrozenMultiMapIjS7_NS_11SmallVectorIS9_Lj16EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift13EndBorrowInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_IS4_EEEEEENS3_14FrozenMultiMapIS4_S4_NS_11SmallVectorIS8_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift9StoreInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift16DestroyValueInstEEdeEv _ZNO4llvm8OptionalIN5swift16SILDebugVariableEEdeEv Line | Count | Source | 362 | 399 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift14ProjectionKindEEdeEv Line | Count | Source | 362 | 3.78k | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift11semanticarc19OwnershipPhiOperandEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIN5swift8SILValueENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS4_NS0_INS3_11semanticarc7Context21ConsumingOperandStateEEEEEEENS3_14FrozenMultiMapIS4_S9_NS1_6vectorISB_NS1_9allocatorISB_EEEEE15PairToSecondEltEEEEEEEEdeEv _ZNO4llvm8OptionalIPN5swift13CopyValueInstEEdeEv Line | Count | Source | 362 | 3 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift16DeallocStackInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift15StoreBorrowInstEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift14ProfileCounterEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift3ide3api11SDKNodeKindEEdeEv _ZNO4llvm8OptionalIPKN5swift13DeclAttributeEEdeEv Line | Count | Source | 362 | 8.69k | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalINS_6TripleEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINS_9StringRefEEdeEv _ZNO4llvm8OptionalIN5swift14ActorIsolation4KindEEdeEv Line | Count | Source | 362 | 4.15k | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift9MacroRoleEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift23KeyPathPatternComponentEEdeEv _ZNO4llvm8OptionalIN5swift7version7VersionEEdeEv Line | Count | Source | 362 | 147 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIPKN5swift11EffectsAttrEEdeEv Line | Count | Source | 362 | 7 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift10ExposeAttrEEdeEv _ZNO4llvm8OptionalIN5swift7SILTypeEEdeEv Line | Count | Source | 362 | 4.62k | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIyEdeEv _ZNO4llvm8OptionalIN5swift14AnyFunctionRefEEdeEv Line | Count | Source | 362 | 219 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift8SILValueEEdeEv Line | Count | Source | 362 | 8.54k | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIPN5swift13SILBasicBlockENS0_INS3_14TransformRangeINS_8ArrayRefINS2_IS5_NS0_IPNS3_7OperandEEEEEEENS3_14FrozenMultiMapIS5_S9_NS_11SmallVectorISB_Lj8EEEE15PairToSecondEltEEEEEEEEdeEv _ZNO4llvm8OptionalIPN5swift4DeclEEdeEv Line | Count | Source | 362 | 174 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift14SILVTableEntryEEdeEv Line | Count | Source | 362 | 16 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift11constraints22SyntacticElementTargetEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift11constraints17CaseLabelItemInfoEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPN5swift13CaseLabelItemEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINS_15MutableArrayRefIN5swift20StmtConditionElementEEEEdeEv _ZNO4llvm8OptionalIPN5swift11constraints13ConstraintFixEEdeEv Line | Count | Source | 362 | 42 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalINSt3__14pairIN5swift4TypeES4_EEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift4TypeEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift11constraints20FunctionArgApplyInfoEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift4DiagIJNS1_4TypeES3_EEEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift10IdentifierEEdeEv _ZNO4llvm8OptionalIN5swift11constraints16SelectedOverloadEEdeEv Line | Count | Source | 362 | 177 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift8ArgumentEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift12ObjCSelectorEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift25PropertyWrapperLValuenessEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift25PropertyWrapperMutabilityEEdeEv TypeCheckSwitchStmt.cpp:_ZNO4llvm8OptionalIN12_GLOBAL__N_111SpaceEngine5SpaceEEdeEv Line | Count | Source | 362 | 3 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIPN5clang6ModuleEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift7VarDecl10IntroducerEEdeEv _ZNO4llvm8OptionalIPKN5swift14SpecializeAttrEEdeEv Line | Count | Source | 362 | 16 | T &&operator*() && { return std::move(Storage.value()); } |
Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift23OriginallyDefinedInAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift23SynthesizedProtocolAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift17KnownProtocolKindEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift15NonSendableAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift13MacroRoleAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift14DiagnosticInfoEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift10CustomAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift19GeneratedSourceInfoEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalIPKN5swift20SPIAccessControlAttrEEdeEv Unexecuted instantiation: _ZNO4llvm8OptionalINS_8ArrayRefIN5swift5TokenEEEEdeEv _ZNO4llvm8OptionalIPN5swift8CaseStmtEEdeEv Line | Count | Source | 362 | 112 | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIN5swift9rewriting6SymbolEEdeEv Line | Count | Source | 362 | 16.6k | T &&operator*() && { return std::move(Storage.value()); } |
_ZNO4llvm8OptionalIiEdeEv Line | Count | Source | 362 | 6.32k | T &&operator*() && { return std::move(Storage.value()); } |
|
363 | | |
364 | 64.3k | template <typename U> T value_or(U &&alt) && { |
365 | 64.3k | return has_value() ? std::move(value()) : std::forward<U>(alt); |
366 | 64.3k | } Unexecuted instantiation: _ZNO4llvm8OptionalIyE8value_orIiEEyOT_ _ZNO4llvm8OptionalIN5swift7VarDecl10IntroducerEE8value_orIRS3_EES3_OT_ Line | Count | Source | 364 | 52 | template <typename U> T value_or(U &&alt) && { | 365 | 52 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 52 | } |
_ZNO4llvm8OptionalINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE8value_orIRA1_KcEES7_OT_ Line | Count | Source | 364 | 130 | template <typename U> T value_or(U &&alt) && { | 365 | 130 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 130 | } |
Unexecuted instantiation: _ZNO4llvm8OptionalIPNS_12DIExpressionEE8value_orIDnEES2_OT_ Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift16BuiltinValueKindEE8value_orIS2_EES2_OT_ _ZNO4llvm8OptionalIPN5swift14SILInstructionEE8value_orIDnEES3_OT_ Line | Count | Source | 364 | 63.1k | template <typename U> T value_or(U &&alt) && { | 365 | 63.1k | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 63.1k | } |
_ZNO4llvm8OptionalIN5swift8SILValueEE8value_orIS2_EES2_OT_ Line | Count | Source | 364 | 502 | template <typename U> T value_or(U &&alt) && { | 365 | 502 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 502 | } |
Unexecuted instantiation: _ZNO4llvm8OptionalIjE8value_orIRmEEjOT_ Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift12VarRefUseEnvEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift12ObjCSelectorEE8value_orIS2_EES2_OT_ Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift18ReferenceOwnershipEE8value_orIS2_EES2_OT_ _ZNO4llvm8OptionalIN5swift7VarDecl10IntroducerEE8value_orIS3_EES3_OT_ Line | Count | Source | 364 | 62 | template <typename U> T value_or(U &&alt) && { | 365 | 62 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 62 | } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift19PatternBindingStateEE8value_orIS2_EES2_OT_ _ZNO4llvm8OptionalIPN5swift18ExternalSourceLocsEE8value_orIDnEES3_OT_ Line | Count | Source | 364 | 216 | template <typename U> T value_or(U &&alt) && { | 365 | 216 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 216 | } |
Unexecuted instantiation: _ZNO4llvm8OptionalIN5swift11FingerprintEE8value_orIS2_EES2_OT_ _ZNO4llvm8OptionalIjE8value_orIiEEjOT_ Line | Count | Source | 364 | 208 | template <typename U> T value_or(U &&alt) && { | 365 | 208 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 208 | } |
_ZNO4llvm8OptionalINS_12VersionTupleEE8value_orIS1_EES1_OT_ Line | Count | Source | 364 | 1 | template <typename U> T value_or(U &&alt) && { | 365 | 1 | return has_value() ? std::move(value()) : std::forward<U>(alt); | 366 | 1 | } |
|
367 | | template <typename U> |
368 | | LLVM_DEPRECATED("Use value_or instead.", "value_or") |
369 | | T getValueOr(U &&alt) && { |
370 | | return has_value() ? std::move(value()) : std::forward<U>(alt); |
371 | | } |
372 | | |
373 | | /// Apply a function to the value if present; otherwise return None. |
374 | | template <class Function> |
375 | | auto transform( |
376 | 25 | const Function &F) && -> Optional<decltype(F(std::move(*this).value()))> { |
377 | 25 | if (*this) |
378 | 17 | return F(std::move(*this).value()); |
379 | 8 | return None; |
380 | 25 | } Unexecuted instantiation: SILGenThunk.cpp:_ZNO4llvm8OptionalIjE9transformIZN5swift8Lowering12SILGenModule52getOrCreateForeignAsyncCompletionHandlerImplFunctionENS3_14CanTypeWrapperINS3_15SILFunctionTypeEEENS3_7CanTypeES9_NS4_18AbstractionPatternENS3_19CanGenericSignatureERNS4_14CalleeTypeInfoEE3$_0EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS1_EEONSF_16remove_referenceIT_E4typeEOSJ_EdefpTE5valueEEEEERKSJ_ Unexecuted instantiation: SILGenThunk.cpp:_ZNO4llvm8OptionalIjE9transformIZN5swift8Lowering12SILGenModule52getOrCreateForeignAsyncCompletionHandlerImplFunctionENS3_14CanTypeWrapperINS3_15SILFunctionTypeEEENS3_7CanTypeES9_NS4_18AbstractionPatternENS3_19CanGenericSignatureERNS4_14CalleeTypeInfoEE3$_1EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS1_EEONSF_16remove_referenceIT_E4typeEOSJ_EdefpTE5valueEEEEERKSJ_ Common.cpp:_ZNO4llvm8OptionalIN5swift16SILDebugVariableEE9transformIZNS1_8autodiff28findDebugLocationAndVariableENS1_8SILValueEE3$_2EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS3_EEONS8_16remove_referenceIT_E4typeEOSC_EdefpTE5valueEEEEERKSC_ Line | Count | Source | 376 | 10 | const Function &F) && -> Optional<decltype(F(std::move(*this).value()))> { | 377 | 10 | if (*this) | 378 | 2 | return F(std::move(*this).value()); | 379 | 8 | return None; | 380 | 10 | } |
Common.cpp:_ZNO4llvm8OptionalIN5swift16SILDebugVariableEE9transformIZNS1_8autodiff28findDebugLocationAndVariableENS1_8SILValueEE3$_3EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS3_EEONS8_16remove_referenceIT_E4typeEOSC_EdefpTE5valueEEEEERKSC_ Line | Count | Source | 376 | 15 | const Function &F) && -> Optional<decltype(F(std::move(*this).value()))> { | 377 | 15 | if (*this) | 378 | 15 | return F(std::move(*this).value()); | 379 | 0 | return None; | 380 | 15 | } |
Unexecuted instantiation: _ZNO4llvm8OptionalIjE9transformIZN5swift13serialization10Serializer14DeclSerializer27writeForeignAsyncConventionERKNS3_22ForeignAsyncConventionEEUljE_EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS1_EEONSB_16remove_referenceIT_E4typeEOSF_EdefpTE5valueEEEEERKSF_ Unexecuted instantiation: _ZNO4llvm8OptionalIjE9transformIZN5swift13serialization10Serializer14DeclSerializer27writeForeignAsyncConventionERKNS3_22ForeignAsyncConventionEEUljE0_EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS1_EEONSB_16remove_referenceIT_E4typeEOSF_EdefpTE5valueEEEEERKSF_ Unexecuted instantiation: Serialization.cpp:_ZNO4llvm8OptionalIjE9transformIZN5clang13serialization15BasicWriterBaseIN12_GLOBAL__N_123ClangToSwiftBasicWriterEE21writeTemplateArgumentENS3_16TemplateArgumentEEUljE_EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS1_EEONSB_16remove_referenceIT_E4typeEOSF_EdefpTE5valueEEEEERKSF_ Unexecuted instantiation: ImportName.cpp:_ZNO4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEE9transformIZNS1_8importer12NameImporter14importNameImplEPKN5clang9NamedDeclENS6_17ImportNameVersionENS8_15DeclarationNameEE3$_5EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS4_EEONSF_16remove_referenceIT_E4typeEOSJ_EdefpTE5valueEEEEERKSJ_ Unexecuted instantiation: ImportName.cpp:_ZNO4llvm8OptionalIN5swift22ForeignAsyncConvention4InfoEE9transformIZNS1_8importer12NameImporter14importNameImplEPKN5clang9NamedDeclENS6_17ImportNameVersionENS8_15DeclarationNameEE3$_6EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS4_EEONSF_16remove_referenceIT_E4typeEOSJ_EdefpTE5valueEEEEERKSJ_ Unexecuted instantiation: Serializability.cpp:_ZNO4llvm8OptionalIjE9transformIZN5clang13serialization15BasicWriterBaseIN12_GLOBAL__N_129ClangTypeSerializationCheckerEE21writeTemplateArgumentENS3_16TemplateArgumentEEUljE_EENS0_IDTclfp_cldtclL_ZNSt3__14moveB6v15006IRS1_EEONSB_16remove_referenceIT_E4typeEOSF_EdefpTE5valueEEEEERKSF_ |
381 | | template <class Function> |
382 | | LLVM_DEPRECATED("Use transform instead.", "transform") |
383 | | auto map(const Function &F) |
384 | | && -> Optional<decltype(F(std::move(*this).value()))> { |
385 | | if (*this) |
386 | | return F(std::move(*this).value()); |
387 | | return None; |
388 | | } |
389 | | }; |
390 | | |
391 | 85 | template <class T> llvm::hash_code hash_value(const Optional<T> &O) { |
392 | 85 | return O ? hash_combine(true, *O) : hash_value(false); |
393 | 85 | } Unexecuted instantiation: _ZN4llvm10hash_valueIyEENS_9hash_codeERKNS_8OptionalIT_EE Unexecuted instantiation: _ZN4llvm10hash_valueIN5swift7SILTypeEEENS_9hash_codeERKNS_8OptionalIT_EE Unexecuted instantiation: _ZN4llvm10hash_valueIN5swift11SILLocationEEENS_9hash_codeERKNS_8OptionalIT_EE _ZN4llvm10hash_valueINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEEEENS_9hash_codeERKNS_8OptionalIT_EE Line | Count | Source | 391 | 10 | template <class T> llvm::hash_code hash_value(const Optional<T> &O) { | 392 | 10 | return O ? hash_combine(true, *O) : hash_value(false); | 393 | 10 | } |
_ZN4llvm10hash_valueINS_11SmallVectorIN5swift12SymbolSourceELj1EEEEENS_9hash_codeERKNS_8OptionalIT_EE Line | Count | Source | 391 | 75 | template <class T> llvm::hash_code hash_value(const Optional<T> &O) { | 392 | 75 | return O ? hash_combine(true, *O) : hash_value(false); | 393 | 75 | } |
|
394 | | |
395 | | template <typename T, typename U> |
396 | 27.0k | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { |
397 | 27.0k | if (X && Y) |
398 | 24.7k | return *X == *Y; |
399 | 2.27k | return X.has_value() == Y.has_value(); |
400 | 27.0k | } Unexecuted instantiation: _ZN4llvmeqINS_12DIExpression12FragmentInfoES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift11FingerprintES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EEbRKNS_8OptionalIT_EERKNS8_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift19TangentPropertyInfo5ErrorES3_EEbRKNS_8OptionalIT_EERKNS4_IT0_EE _ZN4llvmeqIjjEEbRKNS_8OptionalIT_EERKNS1_IT0_EE Line | Count | Source | 396 | 24.6k | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 24.6k | if (X && Y) | 398 | 24.6k | return *X == *Y; | 399 | 0 | return X.has_value() == Y.has_value(); | 400 | 24.6k | } |
_ZN4llvmeqIN5swift7SILTypeES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Line | Count | Source | 396 | 68 | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 68 | if (X && Y) | 398 | 0 | return *X == *Y; | 399 | 68 | return X.has_value() == Y.has_value(); | 400 | 68 | } |
_ZN4llvmeqIN5swift11SILLocationES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Line | Count | Source | 396 | 342 | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 342 | if (X && Y) | 398 | 0 | return *X == *Y; | 399 | 342 | return X.has_value() == Y.has_value(); | 400 | 342 | } |
Unexecuted instantiation: _ZN4llvmeqINS_15MemoryBufferRefES1_EEbRKNS_8OptionalIT_EERKNS2_IT0_EE _ZN4llvmeqIN5swift11AccessLevelES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Line | Count | Source | 396 | 1.79k | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 1.79k | if (X && Y) | 398 | 0 | return *X == *Y; | 399 | 1.79k | return X.has_value() == Y.has_value(); | 400 | 1.79k | } |
Unexecuted instantiation: _ZN4llvmeqINS_7remarks14RemarkLocationES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqIyyEEbRKNS_8OptionalIT_EERKNS1_IT0_EE _ZN4llvmeqINS_11SmallVectorINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEELj1EEES9_EEbRKNS_8OptionalIT_EERKNSA_IT0_EE Line | Count | Source | 396 | 5 | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 5 | if (X && Y) | 398 | 0 | return *X == *Y; | 399 | 5 | return X.has_value() == Y.has_value(); | 400 | 5 | } |
Unexecuted instantiation: _ZN4llvmeqIPNS_5ValueES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5clang12FileEntryRefES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE _ZN4llvmeqINS_11SmallVectorIN5swift12SymbolSourceELj1EEES4_EEbRKNS_8OptionalIT_EERKNS5_IT0_EE Line | Count | Source | 396 | 29 | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 29 | if (X && Y) | 398 | 0 | return *X == *Y; | 399 | 29 | return X.has_value() == Y.has_value(); | 400 | 29 | } |
Unexecuted instantiation: _ZN4llvmeqIPKPNS_15DomTreeNodeBaseIN5swift13SILBasicBlockEEES7_EEbRKNS_8OptionalIT_EERKNS8_IT0_EE Unexecuted instantiation: _ZN4llvmeqINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS3_12SILSuccessor13pred_iteratorEEEEESA_EEbRKNS6_IT_EERKNS6_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift12SILSuccessor13pred_iteratorES3_EEbRKNS_8OptionalIT_EERKNS4_IT0_EE Unexecuted instantiation: _ZN4llvmeqINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS8_EEEEEEESG_EEbRKNS6_IT_EERKNS6_IT0_EE Unexecuted instantiation: _ZN4llvmeqIPN5swift25fine_grained_dependencies18ModuleDepGraphNodeES4_EEbRKNS_8OptionalIT_EERKNS5_IT0_EE _ZN4llvmeqIN5swift10SILDeclRefES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Line | Count | Source | 396 | 164 | constexpr bool operator==(const Optional<T> &X, const Optional<U> &Y) { | 397 | 164 | if (X && Y) | 398 | 132 | return *X == *Y; | 399 | 32 | return X.has_value() == Y.has_value(); | 400 | 164 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift17TransformIteratorIPNS1_12SILSuccessorEPFPNS1_13SILBasicBlockERKS3_EEESB_EEbRKNS_8OptionalIT_EERKNSC_IT0_EE Unexecuted instantiation: _ZN4llvmeqINS_11SmallVectorINS1_IjLj1EEELj4EEES3_EEbRKNS_8OptionalIT_EERKNS4_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift10IdentifierES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift22ForeignAsyncConventionES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift22ForeignErrorConventionES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqIN5swift12ObjCSelectorES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: ImportName.cpp:_ZN4llvmeqIN12_GLOBAL__N_116AnySwiftNameAttrES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmeqINS_12VersionTupleES1_EEbRKNS_8OptionalIT_EERKNS2_IT0_EE |
401 | | |
402 | | template <typename T, typename U> |
403 | 23.2k | constexpr bool operator!=(const Optional<T> &X, const Optional<U> &Y) { |
404 | 23.2k | return !(X == Y); |
405 | 23.2k | } _ZN4llvmneIN5swift10SILDeclRefES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Line | Count | Source | 403 | 164 | constexpr bool operator!=(const Optional<T> &X, const Optional<U> &Y) { | 404 | 164 | return !(X == Y); | 405 | 164 | } |
Unexecuted instantiation: _ZN4llvmneIN5swift22ForeignAsyncConventionES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmneIN5swift22ForeignErrorConventionES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE _ZN4llvmneIjjEEbRKNS_8OptionalIT_EERKNS1_IT0_EE Line | Count | Source | 403 | 23.0k | constexpr bool operator!=(const Optional<T> &X, const Optional<U> &Y) { | 404 | 23.0k | return !(X == Y); | 405 | 23.0k | } |
Unexecuted instantiation: _ZN4llvmneIN5swift11FingerprintES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE |
406 | | |
407 | | template <typename T, typename U> |
408 | 0 | constexpr bool operator<(const Optional<T> &X, const Optional<U> &Y) { |
409 | 0 | if (X && Y) |
410 | 0 | return *X < *Y; |
411 | 0 | return X.has_value() < Y.has_value(); |
412 | 0 | } Unexecuted instantiation: _ZN4llvmltINS_12DIExpression12FragmentInfoES2_EEbRKNS_8OptionalIT_EERKNS3_IT0_EE Unexecuted instantiation: _ZN4llvmltIyyEEbRKNS_8OptionalIT_EERKNS1_IT0_EE Unexecuted instantiation: _ZN4llvmltIN5swift11constraints5ScoreES3_EEbRKNS_8OptionalIT_EERKNS4_IT0_EE |
413 | | |
414 | | template <typename T, typename U> |
415 | | constexpr bool operator<=(const Optional<T> &X, const Optional<U> &Y) { |
416 | | return !(Y < X); |
417 | | } |
418 | | |
419 | | template <typename T, typename U> |
420 | | constexpr bool operator>(const Optional<T> &X, const Optional<U> &Y) { |
421 | | return Y < X; |
422 | | } |
423 | | |
424 | | template <typename T, typename U> |
425 | | constexpr bool operator>=(const Optional<T> &X, const Optional<U> &Y) { |
426 | | return !(X < Y); |
427 | | } |
428 | | |
429 | | template <typename T> |
430 | 276 | constexpr bool operator==(const Optional<T> &X, NoneType) { |
431 | 276 | return !X; |
432 | 276 | } Unexecuted instantiation: _ZN4llvmeqINS_13FastMathFlagsEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmeqINS_11SmallVectorINSt3__14pairIN5swift18ModuleDependencyIDENS4_20ModuleDependencyInfoEEELj1EEEEEbRKNS_8OptionalIT_EENS2_9nullopt_tE Unexecuted instantiation: _ZN4llvmeqIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE _ZN4llvmeqIN5swift13SILAccessKindEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Line | Count | Source | 430 | 23 | constexpr bool operator==(const Optional<T> &X, NoneType) { | 431 | 23 | return !X; | 432 | 23 | } |
Unexecuted instantiation: _ZN4llvmeqINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS3_12SILSuccessor13pred_iteratorEEEEEEEbRKNS6_IT_EENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvmeqINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS8_EEEEEEEEEbRKNS6_IT_EENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvmeqIxEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmeqINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEEbRKNS_8OptionalIT_EENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvmeqIbEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmeqINS_9StringRefEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmeqIN5swift9SourceLocEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmeqINS_15MemoryBufferRefEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE _ZN4llvmeqINS_12VersionTupleEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Line | Count | Source | 430 | 253 | constexpr bool operator==(const Optional<T> &X, NoneType) { | 431 | 253 | return !X; | 432 | 253 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift9MacroRoleEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE |
433 | | |
434 | | template <typename T> |
435 | | constexpr bool operator==(NoneType, const Optional<T> &X) { |
436 | | return X == None; |
437 | | } |
438 | | |
439 | | template <typename T> |
440 | 270 | constexpr bool operator!=(const Optional<T> &X, NoneType) { |
441 | 270 | return !(X == None); |
442 | 270 | } Unexecuted instantiation: _ZN4llvmneINS_13FastMathFlagsEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmneIN5swift20PrimitiveTypeMapping13ClangTypeInfoEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE _ZN4llvmneIN5swift13SILAccessKindEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Line | Count | Source | 440 | 17 | constexpr bool operator!=(const Optional<T> &X, NoneType) { | 441 | 17 | return !(X == None); | 442 | 17 | } |
Unexecuted instantiation: _ZN4llvmneINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS3_12SILSuccessor13pred_iteratorEEEEEEEbRKNS6_IT_EENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvmneINSt3__14pairIPN5swift13SILBasicBlockENS_8OptionalINS3_17TransformIteratorIPNS3_12SILSuccessorEPFS5_RKS8_EEEEEEEEEbRKNS6_IT_EENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvmneINSt3__14pairIPKN5swift13AvailableAttrEPKNS3_4DeclEEEEEbRKNS_8OptionalIT_EENS1_9nullopt_tE Unexecuted instantiation: _ZN4llvmneINS_9StringRefEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmneIN5swift9SourceLocEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Unexecuted instantiation: _ZN4llvmneINS_15MemoryBufferRefEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE _ZN4llvmneINS_12VersionTupleEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE Line | Count | Source | 440 | 253 | constexpr bool operator!=(const Optional<T> &X, NoneType) { | 441 | 253 | return !(X == None); | 442 | 253 | } |
Unexecuted instantiation: _ZN4llvmneIN5swift9MacroRoleEEEbRKNS_8OptionalIT_EENSt3__19nullopt_tE |
443 | | |
444 | | template <typename T> |
445 | | constexpr bool operator!=(NoneType, const Optional<T> &X) { |
446 | | return X != None; |
447 | | } |
448 | | |
449 | | template <typename T> constexpr bool operator<(const Optional<T> &, NoneType) { |
450 | | return false; |
451 | | } |
452 | | |
453 | | template <typename T> constexpr bool operator<(NoneType, const Optional<T> &X) { |
454 | | return X.has_value(); |
455 | | } |
456 | | |
457 | | template <typename T> |
458 | | constexpr bool operator<=(const Optional<T> &X, NoneType) { |
459 | | return !(None < X); |
460 | | } |
461 | | |
462 | | template <typename T> |
463 | | constexpr bool operator<=(NoneType, const Optional<T> &X) { |
464 | | return !(X < None); |
465 | | } |
466 | | |
467 | | template <typename T> constexpr bool operator>(const Optional<T> &X, NoneType) { |
468 | | return None < X; |
469 | | } |
470 | | |
471 | | template <typename T> constexpr bool operator>(NoneType, const Optional<T> &X) { |
472 | | return X < None; |
473 | | } |
474 | | |
475 | | template <typename T> |
476 | | constexpr bool operator>=(const Optional<T> &X, NoneType) { |
477 | | return None <= X; |
478 | | } |
479 | | |
480 | | template <typename T> |
481 | | constexpr bool operator>=(NoneType, const Optional<T> &X) { |
482 | | return X <= None; |
483 | | } |
484 | | |
485 | | template <typename T> |
486 | 64.6k | constexpr bool operator==(const Optional<T> &X, const T &Y) { |
487 | 64.6k | return X && *X == Y; |
488 | 64.6k | } Unexecuted instantiation: _ZN4llvmeqIN5swift18ReferenceOwnershipEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqINS_4wasm14WasmSymbolTypeEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5clang14SourceLocationEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift16OptionalTypeKindEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmeqIN5swift26IntermoduleDepTrackingModeEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 92 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 92 | return X && *X == Y; | 488 | 92 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift13serialization6StatusEEEbRKNS_8OptionalIT_EERKS5_ Unexecuted instantiation: _ZN4llvmeqINS_3cas5CASIDEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift9MacroRoleEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmeqIN5swift13SILAccessKindEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 6 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 6 | return X && *X == Y; | 488 | 6 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift12AccessorKindEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmeqIN5swift16BuiltinValueKindEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 55.9k | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 55.9k | return X && *X == Y; | 488 | 55.9k | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift17AccessStorageCastEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift22LoadOwnershipQualifierEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmeqIN5swift19CtorInitializerKindEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 329 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 329 | return X && *X == Y; | 488 | 329 | } |
_ZN4llvmeqIN5swift21DifferentiabilityKindEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 1.80k | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 1.80k | return X && *X == Y; | 488 | 1.80k | } |
_ZN4llvmeqIN5swift30AutoDiffDerivativeFunctionKindEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 2 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 2 | return X && *X == Y; | 488 | 2 | } |
_ZN4llvmeqIN5swift11constraints9ScoreKindEEEbRKNS_8OptionalIT_EERKS5_ Line | Count | Source | 486 | 1 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 1 | return X && *X == Y; | 488 | 1 | } |
_ZN4llvmeqIN5swift11constraints25ConversionRestrictionKindEEEbRKNS_8OptionalIT_EERKS5_ Line | Count | Source | 486 | 2 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 2 | return X && *X == Y; | 488 | 2 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift21ContextualTypePurposeEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmeqIN5swift11constraints16IUOReferenceKindEEEbRKNS_8OptionalIT_EERKS5_ Line | Count | Source | 486 | 1.30k | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 1.30k | return X && *X == Y; | 488 | 1.30k | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift19ExportabilityReasonEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIbEEbRKNS_8OptionalIT_EERKS2_ Unexecuted instantiation: _ZN4llvmeqIN5swift22AutomaticEnumValueKindEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift12ObjCSelectorEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift18StaticSpellingKindEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift16BuiltinMacroKindEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqI20LayoutConstraintKindEEbRKNS_8OptionalIT_EERKS3_ _ZN4llvmeqIN5swift19TypeResolutionStageEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 34 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 34 | return X && *X == Y; | 488 | 34 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift10IdentifierEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIPN5clang6ModuleEEEbRKNS_8OptionalIT_EERKS5_ Unexecuted instantiation: _ZN4llvmeqIN5swift17KnownProtocolKindEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmeqIN5swift21PlatformConditionKindEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmeqIN5swift14ParamSpecifierEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 486 | 4.62k | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 4.62k | return X && *X == Y; | 488 | 4.62k | } |
Unexecuted instantiation: _ZN4llvmeqIPN5swift11InitializerEEEbRKNS_8OptionalIT_EERKS5_ _ZN4llvmeqIjEEbRKNS_8OptionalIT_EERKS2_ Line | Count | Source | 486 | 486 | constexpr bool operator==(const Optional<T> &X, const T &Y) { | 487 | 486 | return X && *X == Y; | 488 | 486 | } |
|
489 | | |
490 | | template <typename T> |
491 | 36 | constexpr bool operator==(const T &X, const Optional<T> &Y) { |
492 | 36 | return Y && X == *Y; |
493 | 36 | } _ZN4llvmeqIjEEbRKT_RKNS_8OptionalIS1_EE Line | Count | Source | 491 | 36 | constexpr bool operator==(const T &X, const Optional<T> &Y) { | 492 | 36 | return Y && X == *Y; | 493 | 36 | } |
Unexecuted instantiation: _ZN4llvmeqIN5swift7SILTypeEEEbRKT_RKNS_8OptionalIS3_EE |
494 | | |
495 | | template <typename T> |
496 | 1.80k | constexpr bool operator!=(const Optional<T> &X, const T &Y) { |
497 | 1.80k | return !(X == Y); |
498 | 1.80k | } Unexecuted instantiation: _ZN4llvmneIN5clang14SourceLocationEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmneIN5swift13serialization6StatusEEEbRKNS_8OptionalIT_EERKS5_ Unexecuted instantiation: _ZN4llvmneIN5swift10IdentifierEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmneIN5swift9MacroRoleEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmneIN5swift16BuiltinValueKindEEEbRKNS_8OptionalIT_EERKS4_ _ZN4llvmneIN5swift21DifferentiabilityKindEEEbRKNS_8OptionalIT_EERKS4_ Line | Count | Source | 496 | 1.80k | constexpr bool operator!=(const Optional<T> &X, const T &Y) { | 497 | 1.80k | return !(X == Y); | 498 | 1.80k | } |
Unexecuted instantiation: _ZN4llvmneIN5swift19ExportabilityReasonEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmneIbEEbRKNS_8OptionalIT_EERKS2_ Unexecuted instantiation: _ZN4llvmneIN5swift12ObjCSelectorEEEbRKNS_8OptionalIT_EERKS4_ Unexecuted instantiation: _ZN4llvmneI20LayoutConstraintKindEEbRKNS_8OptionalIT_EERKS3_ Unexecuted instantiation: _ZN4llvmneIPN5clang6ModuleEEEbRKNS_8OptionalIT_EERKS5_ Unexecuted instantiation: _ZN4llvmneIN5swift21PlatformConditionKindEEEbRKNS_8OptionalIT_EERKS4_ |
499 | | |
500 | | template <typename T> |
501 | 0 | constexpr bool operator!=(const T &X, const Optional<T> &Y) { |
502 | 0 | return !(X == Y); |
503 | 0 | } |
504 | | |
505 | | template <typename T> |
506 | 1 | constexpr bool operator<(const Optional<T> &X, const T &Y) { |
507 | 1 | return !X || *X < Y; |
508 | 1 | } _ZN4llvmltIN5swift7version7VersionEEEbRKNS_8OptionalIT_EERKS5_ Line | Count | Source | 506 | 1 | constexpr bool operator<(const Optional<T> &X, const T &Y) { | 507 | 1 | return !X || *X < Y; | 508 | 1 | } |
Unexecuted instantiation: _ZN4llvmltIjEEbRKNS_8OptionalIT_EERKS2_ |
509 | | |
510 | | template <typename T> |
511 | 0 | constexpr bool operator<(const T &X, const Optional<T> &Y) { |
512 | 0 | return Y && X < *Y; |
513 | 0 | } Unexecuted instantiation: _ZN4llvmltIjEEbRKT_RKNS_8OptionalIS1_EE Unexecuted instantiation: _ZN4llvmltIiEEbRKT_RKNS_8OptionalIS1_EE |
514 | | |
515 | | template <typename T> |
516 | | constexpr bool operator<=(const Optional<T> &X, const T &Y) { |
517 | | return !(Y < X); |
518 | | } |
519 | | |
520 | | template <typename T> |
521 | | constexpr bool operator<=(const T &X, const Optional<T> &Y) { |
522 | | return !(Y < X); |
523 | | } |
524 | | |
525 | | template <typename T> |
526 | 0 | constexpr bool operator>(const Optional<T> &X, const T &Y) { |
527 | 0 | return Y < X; |
528 | 0 | } Unexecuted instantiation: _ZN4llvmgtIjEEbRKNS_8OptionalIT_EERKS2_ Unexecuted instantiation: _ZN4llvmgtIiEEbRKNS_8OptionalIT_EERKS2_ |
529 | | |
530 | | template <typename T> |
531 | | constexpr bool operator>(const T &X, const Optional<T> &Y) { |
532 | | return Y < X; |
533 | | } |
534 | | |
535 | | template <typename T> |
536 | 0 | constexpr bool operator>=(const Optional<T> &X, const T &Y) { |
537 | 0 | return !(X < Y); |
538 | 0 | } |
539 | | |
540 | | template <typename T> |
541 | | constexpr bool operator>=(const T &X, const Optional<T> &Y) { |
542 | | return !(X < Y); |
543 | | } |
544 | | |
545 | | raw_ostream &operator<<(raw_ostream &OS, NoneType); |
546 | | |
547 | | template <typename T, typename = decltype(std::declval<raw_ostream &>() |
548 | | << std::declval<const T &>())> |
549 | 0 | raw_ostream &operator<<(raw_ostream &OS, const Optional<T> &O) { |
550 | 0 | if (O) |
551 | 0 | OS << *O; |
552 | 0 | else |
553 | 0 | OS << None; |
554 | 0 | return OS; |
555 | 0 | } Unexecuted instantiation: _ZN4llvmlsIyRNS_11raw_ostreamEEES2_S2_RKNS_8OptionalIT_EE Unexecuted instantiation: _ZN4llvmlsIN5swift4TypeERNS_11raw_ostreamEEES4_S4_RKNS_8OptionalIT_EE Unexecuted instantiation: _ZN4llvmlsIjRNS_11raw_ostreamEEES2_S2_RKNS_8OptionalIT_EE |
556 | | |
557 | | } // end namespace llvm |
558 | | |
559 | | #endif // LLVM_ADT_OPTIONAL_H |